]> git.saurik.com Git - wxWidgets.git/blobdiff - src/palmos/main.cpp
decouple item index from string value (patch 1905702)
[wxWidgets.git] / src / palmos / main.cpp
index 2c4f957771865b993d99bc6144b438ac1df699a9..4e75c85aff22be51864d88428f85133eeb80c167 100644 (file)
 
 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[i] = wxStrdup(wxConvLibc.cMB2WX(args[i]));
-    }
 
     // argv[] must be NULL-terminated
     argv[argc] = NULL;