]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/main.cpp
Fix for the fix for wxChoice selection.
[wxWidgets.git] / src / msw / main.cpp
index 9d35d670013bc58289bdaade16836ba9b150832a..a8bee7283bd1ad4632b9623432e0bd2885258314 100644 (file)
@@ -77,15 +77,8 @@ WXDLLEXPORT int wxEntry(HINSTANCE hInstance,
     }
 
 #ifdef __WXWINCE__
-    // WinCE doesn't insert the program itself, so let's
-    // do it here.
-    wxString programName;
-
-    if ( ::GetModuleFileName( (HMODULE) wxGetInstance(), wxStringBuffer(programName, MAX_PATH), MAX_PATH ) == 0)
-    {
-        wxLogLastError(_T("GetModuleFileName"));
-    }
-    args.Insert(programName, 0);
+    // WinCE doesn't insert the program itself, so do it ourselves.
+    args.Insert(wxGetFullModuleName(), 0);
 #endif
 
     int argc = args.GetCount();