X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/d8edb3856b9a5e076927e43e2ace8d4a560c3ae4..217099990c2665d18d352c60058106da9a014ab8:/include/wx/textfile.h?ds=sidebyside diff --git a/include/wx/textfile.h b/include/wx/textfile.h index c6e33dcca3..b0d4dd9287 100644 --- a/include/wx/textfile.h +++ b/include/wx/textfile.h @@ -20,11 +20,6 @@ #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