]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/cmdline.h
continue with loading the message catalog even if setting the locale failed
[wxWidgets.git] / include / wx / cmdline.h
index fc5726d1da960f1eca937aa537b03f85fc3f2187..88ce4e51d311075eb52af7de540b1e34c1363b52 100644 (file)
@@ -64,13 +64,17 @@ enum wxCmdLineEntryType
 struct wxCmdLineEntryDesc
 {
     wxCmdLineEntryType kind;
-    wxString shortName;
-    wxString longName;
-    wxString description;
+    const char *shortName;
+    const char *longName;
+    const char *description;
     wxCmdLineParamType type;
     int flags;
 };
 
+// the list of wxCmdLineEntryDesc objects should be terminated with this one
+#define wxCMD_LINE_DESC_END \
+        { wxCMD_LINE_NONE, NULL, NULL, NULL, wxCMD_LINE_VAL_NONE, 0x0 }
+
 // ----------------------------------------------------------------------------
 // wxCmdLineParser is a class for parsing command line.
 //