X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/670f9935630beb2123a5ca62894ae92a3f0efa4f..04fa04d8067d235ab45b5bc05b65f0679634b541:/src/palmos/main.cpp diff --git a/src/palmos/main.cpp b/src/palmos/main.cpp index d1ca479472..7268bcc5f3 100644 --- a/src/palmos/main.cpp +++ b/src/palmos/main.cpp @@ -43,23 +43,16 @@ int wxEntry() { - /* There is no command line in PalmOS. For now generate a fake arument + /* There is no command line in PalmOS. For now generate a fake argument * list. Later this may be changed to reflect the application launch code */ - wxArrayString args; - int argc = args.GetCount(); - - // +1 here for the terminating NULL + static const int argc = 0; wxChar **argv = new wxChar *[argc + 1]; - for ( int i = 0; i < argc; i++ ) - { - argv[i] = wxStrdup(args[i]); - } // argv[] must be NULL-terminated argv[argc] = NULL; - return wxEntry(argc, argv); + return wxEntry(const_cast(argc), argv); } #endif // wxUSE_GUI