]> git.saurik.com Git - wxWidgets.git/blobdiff - contrib/utils/wxrcedit/edapp.cpp
fixes to dependency problems in win32 makefiles
[wxWidgets.git] / contrib / utils / wxrcedit / edapp.cpp
index 3adb61a1c7bf95c69924256d3623189d4855cbde..10a151c8914e52bad8fbdc0e997a80a0a023a306 100644 (file)
@@ -7,7 +7,7 @@
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(__APPLE__)
     #pragma implementation
     #pragma interface
 #endif
@@ -25,7 +25,7 @@
     #include "wx/wx.h"
 #endif
 
-#include "wx/xml/xml.h"
+#include "wx/xrc/xml.h"
 #include "wx/image.h"
 #include "wx/wx.h"
 
@@ -47,6 +47,8 @@ IMPLEMENT_APP(MyApp)
 
 bool MyApp::OnInit()
 {
+    SetVendorName(wxT("wxWindows"));
+    SetAppName(wxT("wxrcedit"));
     wxString arg = (argc >= 1) ? argv[1] : "";
     wxInitAllImageHandlers();
     wxFrame *frame = new EditorFrame(NULL, arg);