]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk1/utilsres.cpp
corrected previous commit's wrongly applied patch
[wxWidgets.git] / src / gtk1 / utilsres.cpp
index cf2e22fa6962f05e48828dc11e5014059dbe8017..e3f817e19f4c2204d19d55c95c525bd696f45c4a 100644 (file)
@@ -7,10 +7,13 @@
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
-//#ifdef __GNUG__
+//#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
 //#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"
 #include "wx/list.h"
@@ -25,7 +28,7 @@
 bool wxWriteResource(const wxString& section, const wxString& entry, const wxString& value, const wxString& file )
 {
     wxString filename( file );
-    if (filename.IsEmpty()) filename = wxT(".wxWindows");
+    if (filename.IsEmpty()) filename = wxT(".wxWidgets");
     
     wxFileConfig conf( wxTheApp->GetAppName(), wxTheApp->GetVendorName(), filename );
     
@@ -61,7 +64,7 @@ bool wxWriteResource(const wxString& section, const wxString& entry, int value,
 bool wxGetResource(const wxString& section, const wxString& entry, wxChar **value, const wxString& file )
 {
     wxString filename( file );
-    if (filename.IsEmpty()) filename = wxT(".wxWindows");
+    if (filename.IsEmpty()) filename = wxT(".wxWidgets");
 
     wxFileConfig conf( wxTheApp->GetAppName(), wxTheApp->GetVendorName(), filename );