From: Václav Slavík Date: Sat, 10 Nov 2001 18:23:55 +0000 (+0000) Subject: added app name to wxrcedit (forgot to commit this one long time ago...) X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/cbe37d08c8de929de5574b4831f9fbe57e85cbd7 added app name to wxrcedit (forgot to commit this one long time ago...) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12374 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/contrib/utils/wxrcedit/edapp.cpp b/contrib/utils/wxrcedit/edapp.cpp index e06b5bf15d..8a3111e7ad 100644 --- a/contrib/utils/wxrcedit/edapp.cpp +++ b/contrib/utils/wxrcedit/edapp.cpp @@ -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);