]> git.saurik.com Git - wxWidgets.git/blobdiff - docs/latex/wx/cmdlpars.tex
add wxSYS_DCLICK_TIME system metric constant; use it for the generic list control...
[wxWidgets.git] / docs / latex / wx / cmdlpars.tex
index c0b90dde6f548606774a0312e7024f605ac7edc2..f5b21d36a89bacf4a995641f7bbf45052cb09db2 100644 (file)
@@ -69,9 +69,9 @@ this structure:
 struct wxCmdLineEntryDesc
 {
     wxCmdLineEntryType kind;
-    const wxChar *shortName;
-    const wxChar *longName;
-    const wxChar *description;
+    wxString shortName;
+    wxString longName;
+    wxString description;
     wxCmdLineParamType type;
     int flags;
 };
@@ -93,7 +93,7 @@ enum wxCmdLineEntryType
 }
 
 The field {\tt shortName} is the usual, short, name of the switch or the option.
-{\tt longName} is the corresponding long name or NULL if the option has no long
+{\tt longName} is the corresponding long name or empty if the option has no long
 name. Both of these fields are unused for the parameters. Both the short and
 long option names can contain only letters, digits and the underscores.