]> git.mxchange.org Git - flightgear.git/commitdiff
Rename FontStatus enum labels because ERROR is already a macro under Windows
authorfredb <fredb>
Wed, 14 May 2008 09:51:11 +0000 (09:51 +0000)
committerfredb <fredb>
Wed, 14 May 2008 09:51:11 +0000 (09:51 +0000)
src/GUI/SafeTexFont.cxx
src/GUI/SafeTexFont.hxx

index e40f4898b98d1009c3c91c8625c32daab28082bc..0fcfc6e4726cf015b5dc782986e9f45421550f60 100644 (file)
@@ -26,7 +26,7 @@ int SafeTexFont::load(const char *fname, GLenum mag, GLenum min)
 {
     struct stat buf;
     if (stat(fname, &buf) == -1) {
-        _status = ERROR;
+        _status = e_ERROR;
         return FNT_FALSE;
     }
     _name = fname;
@@ -37,16 +37,16 @@ int SafeTexFont::load(const char *fname, GLenum mag, GLenum min)
 
 bool SafeTexFont::ensureTextureLoaded()
 {
-    if (_status != ERROR) {
-        if (_status == LOADED) {
+    if (_status != e_ERROR) {
+        if (_status == e_LOADED) {
             return true;
         } else {
             int loadStatus = fntTexFont::load(_name.c_str(), _mag, _min);
             if (loadStatus == FNT_TRUE) {
-                _status = LOADED;
+                _status = e_LOADED;
                 return true;
             } else {
-                _status = ERROR;
+                _status = e_ERROR;
                 _error = ulGetError();
                 return false;
             }    
index c1ca7180134b20fe015573782bb62814bd99749c..0e6397c8b5ceef0b1c90112856dd72533e06e35f 100644 (file)
@@ -31,7 +31,7 @@ namespace flightgear
 class SafeTexFont : public fntTexFont
 {
 public:
-    SafeTexFont() : _status(NOT_LOADED) {}
+    SafeTexFont() : _status(e_NOT_LOADED) {}
     /** Load the texture for this font.
      * @param mag OpenGL texture magnification; default is GL_NEAREST
      * @param min OpenGL texture minification; default is
@@ -46,9 +46,9 @@ public:
     void puts(sgVec3 curpos, float pointsize, float italic, const char *s);
     enum FontStatus
     {
-        ERROR = -1,
-        NOT_LOADED = 0,
-        LOADED = 1
+        e_ERROR = -1,
+        e_NOT_LOADED = 0,
+        e_LOADED = 1
     };
     FontStatus getStatus() { return _status; }
     std::string& fntError() { return _error; }