From 359e0d9c704bc950c852a4511de78795a1800360 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Fri, 17 Jan 2003 16:00:09 +0000 Subject: [PATCH] Removed the addition of 0 to the add of the encoded text vector as it is now redundent having added support for the begin,end range into FTFont. --- src/osgText/EncodedText.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/osgText/EncodedText.cpp b/src/osgText/EncodedText.cpp index c867de64e..8d8846cbe 100644 --- a/src/osgText/EncodedText.cpp +++ b/src/osgText/EncodedText.cpp @@ -219,7 +219,6 @@ void EncodedText::setText(const unsigned char* text, int length) character = getNextCharacter(text); charCount = (int)(text-textStart); } - _unicodeText.push_back(0); //just making the null-termination explicit } }