]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk/utilsres.cpp
Further sorting work using the sorting data model.
[wxWidgets.git] / src / gtk / utilsres.cpp
index 69c6097176a2b36f26cb6aa70d3ff03a8f24c60f..45bdc9fec1e2d9cde774758a7ffcc3c1ef0fff53 100644 (file)
@@ -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 );
 }