]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/textfile.h
fixed ifdef
[wxWidgets.git] / include / wx / textfile.h
index c6e33dcca36d8019f0644b0591d9ddf5e0b66735..b0d4dd9287bdf7e68e62d9b89ada67293e942cee 100644 (file)
 
 #include "wx/defs.h"
 
-#if !wxUSE_FILE
-    #undef wxUSE_TEXTFILE
-    #define wxUSE_TEXTFILE 0
-#endif // wxUSE_FILE
-
 // ----------------------------------------------------------------------------
 // constants
 // ----------------------------------------------------------------------------
@@ -190,6 +185,12 @@ private:
     // copy ctor/assignment operator not implemented
     wxTextFile(const wxTextFile&);
     wxTextFile& operator=(const wxTextFile&);
+
+    // suppress the gcc warning: 'class defines only private constructors and
+    // has no friends'
+#ifdef __GNUG__
+    friend class wxTextFileDummyFriend;
+#endif // gcc
 };
 
 #endif // wxUSE_TEXTFILE