Commit d87d5a2cc72fc20a258a302f3b7e1e00cfe239c9

sammy 2008-04-04T09:18:46

* Remove extra qualification in FTTextureGlyph::ResetActiveTexture, this is illegal and no longer tolerated by recent gcc versions.

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/include/FTTextureGlyph.h b/include/FTTextureGlyph.h
index c263f72..8959cb3 100644
--- a/include/FTTextureGlyph.h
+++ b/include/FTTextureGlyph.h
@@ -52,7 +52,7 @@ class FTGL_EXPORT FTTextureGlyph : public FTGlyph
          * Reset the currently active texture to zero to get into a known state before
          * drawing a string. This is to get round possible threading issues.
          */
-        static void FTTextureGlyph::ResetActiveTexture(){ activeTextureID = 0;}
+        static void ResetActiveTexture(){ activeTextureID = 0;}
         
     private:
         /**