From 42689bfa2ec8c059c61f04609ef53ba6fdc4ab8c Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Sun, 10 Oct 2004 18:18:45 +0000 Subject: [PATCH] Fixed copy and past erro in getFontWidth. --- include/osgText/Text | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/osgText/Text b/include/osgText/Text index e657401be..cafb9c5d5 100644 --- a/include/osgText/Text +++ b/include/osgText/Text @@ -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.*/