diff options
| author | Stijn Buys <ingar@osirion.org> | 2009-08-16 17:34:00 +0000 | 
|---|---|---|
| committer | Stijn Buys <ingar@osirion.org> | 2009-08-16 17:34:00 +0000 | 
| commit | d763e294f44eb38b94bf7e2055b77a982b72b7c0 (patch) | |
| tree | 37f91c6b7fee58fcecfbfc54dda3f71eb8617b9f /src/ui/font.h | |
| parent | 95cc140404c6524ea16e193e1421e826b239114f (diff) | |
more constness
Diffstat (limited to 'src/ui/font.h')
| -rw-r--r-- | src/ui/font.h | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/src/ui/font.h b/src/ui/font.h index 1261427..4fb6310 100644 --- a/src/ui/font.h +++ b/src/ui/font.h @@ -28,11 +28,11 @@ public:  	}  	inline float width() const { -		return font_size.x; +		return font_size.width();  	}  	inline float height() const { -		return font_size.y; +		return font_size.height();  	}  	void set_size(const float width, const float height); | 
