X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e7d9c398677ad0cc32735132d841de31eaf675ea..4eccd3a10f820927f6e75092b1ecb266da48f5f4:/src/gtk/utilsres.cpp diff --git a/src/gtk/utilsres.cpp b/src/gtk/utilsres.cpp index 69c6097176..45bdc9fec1 100644 --- a/src/gtk/utilsres.cpp +++ b/src/gtk/utilsres.cpp @@ -7,10 +7,6 @@ // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// -//#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) -//#pragma implementation "utils.h" -//#endif - // For compilers that support precompilation, includes "wx.h". #include "wx/wxprec.h" @@ -29,11 +25,11 @@ bool wxWriteResource(const wxString& section, const wxString& entry, const wxStr { wxString filename( file ); if (filename.IsEmpty()) filename = wxT(".wxWindows"); - + wxFileConfig conf( wxTheApp->GetAppName(), wxTheApp->GetVendorName(), filename ); - + conf.SetPath( section ); - + return conf.Write( entry, value ); }