X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/ad1b0610dcf7fb2d66ebdcf90dbc67c144cfab62..eee3624b111881520d7d58fe174ef563c62d8375:/include/wx/confbase.h diff --git a/include/wx/confbase.h b/include/wx/confbase.h index 28abf293c4..4414c8e7a9 100644 --- a/include/wx/confbase.h +++ b/include/wx/confbase.h @@ -8,13 +8,13 @@ // RCS-ID: $Id$ // Copyright: (c) 1997 Karsten Ballüder Ballueder@usa.net // Vadim Zeitlin -// Licence: wxWindows license +// Licence: wxWindows licence /////////////////////////////////////////////////////////////////////////////// #ifndef _WX_CONFBASE_H_ #define _WX_CONFBASE_H_ -#ifdef __GNUG__ +#if defined(__GNUG__) && !defined(__APPLE__) #pragma interface "confbase.h" #endif @@ -58,7 +58,8 @@ enum { wxCONFIG_USE_LOCAL_FILE = 1, wxCONFIG_USE_GLOBAL_FILE = 2, - wxCONFIG_USE_RELATIVE_PATH = 4 + wxCONFIG_USE_RELATIVE_PATH = 4, + wxCONFIG_USE_NO_ESCAPE_CHARACTERS = 8 }; // ---------------------------------------------------------------------------- @@ -306,6 +307,8 @@ private: wxString m_strName, // name of entry (i.e. name only) m_strOldPath; // saved path bool m_bChanged; // was the path changed? + + DECLARE_NO_COPY_CLASS(wxConfigPathChanger) };