Fixed copy and past erro in getFontWidth.

This commit is contained in:
Robert Osfield 2004-10-10 18:18:45 +00:00
parent f883db6315
commit 42689bfa2e

View File

@ -63,7 +63,7 @@ public:
void setFontResolution(unsigned int width, unsigned int height);
unsigned int getFontWidth() const { return _fontWidth; }
unsigned int getFontHeight() const { return _fontWidth; }
unsigned int getFontHeight() const { return _fontHeight; }
/** Set the text using a osgText::String.*/