X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/cbe37d08c8de929de5574b4831f9fbe57e85cbd7..d1a6e2b7a103d761fbc15e0e9c1c20ab53a849d9:/contrib/utils/wxrcedit/edapp.cpp diff --git a/contrib/utils/wxrcedit/edapp.cpp b/contrib/utils/wxrcedit/edapp.cpp index 8a3111e7ad..ffce6a4fe5 100644 --- a/contrib/utils/wxrcedit/edapp.cpp +++ b/contrib/utils/wxrcedit/edapp.cpp @@ -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/xrc/xml.h" +#include "wx/xml/xml.h" #include "wx/image.h" #include "wx/wx.h" @@ -49,7 +49,7 @@ bool MyApp::OnInit() { SetVendorName(wxT("wxWindows")); SetAppName(wxT("wxrcedit")); - wxString arg = (argc >= 1) ? argv[1] : ""; + wxString arg = (argc >= 1) ? argv[1] : _T(""); wxInitAllImageHandlers(); wxFrame *frame = new EditorFrame(NULL, arg); SetTopWindow(frame);