X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/ffecfa5aeb540b54914739dbb8603edbbd4c00a0..1e005ad1fdc1ce9bdc8b4339f1d58a32e9d9e761:/src/palmos/main.cpp diff --git a/src/palmos/main.cpp b/src/palmos/main.cpp index df38c0718e..7268bcc5f3 100644 --- a/src/palmos/main.cpp +++ b/src/palmos/main.cpp @@ -1,10 +1,10 @@ ///////////////////////////////////////////////////////////////////////////// -// Name: palmos/main.cpp +// Name: src/palmos/main.cpp // Purpose: wxEnter for Palm OS -// Author: William Osborne +// Author: William Osborne - minimal working wxPalmOS port // Modified by: // Created: 10/07/04 -// RCS-ID: $Id: +// RCS-ID: $Id$ // Copyright: (c) William Osborne // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// @@ -17,10 +17,6 @@ // headers // ---------------------------------------------------------------------------- -#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) - #pragma implementation -#endif - // For compilers that support precompilation, includes "wx.h". #include "wx/wxprec.h" @@ -28,8 +24,11 @@ #pragma hdrstop #endif -#include "wx/event.h" -#include "wx/app.h" +#ifndef WX_PRECOMP + #include "wx/event.h" + #include "wx/app.h" +#endif //WX_PRECOMP + #include "wx/cmdline.h" #if wxUSE_GUI @@ -44,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