]> 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 cf2e22fa6962f05e48828dc11e5014059dbe8017..45bdc9fec1e2d9cde774758a7ffcc3c1ef0fff53 100644 (file)
@@ -7,9 +7,8 @@
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
-//#ifdef __GNUG__
-//#pragma implementation "utils.h"
-//#endif
+// For compilers that support precompilation, includes "wx.h".
+#include "wx/wxprec.h"
 
 #include "wx/utils.h"
 #include "wx/string.h"
@@ -26,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 );
 }