diff --git a/interface/wx/cmdline.h b/interface/wx/cmdline.h index c6e4cf0bd2..fab60ab6e5 100644 --- a/interface/wx/cmdline.h +++ b/interface/wx/cmdline.h @@ -449,24 +449,19 @@ public: wxCmdLineParser(); /** - Constructor which specifies the command line to parse. This is the - traditional (Unix) command line format. The parameters @a argc and - @a argv have the same meaning as the typical @c main() function. + Constructor which specifies the command line to parse. - This constructor is available in both ANSI and Unicode modes because under - some platforms the command line arguments are passed as ASCII strings - even to Unicode programs. + This is the traditional (Unix) command line format and the parameters + @a argc and @a argv have the same meaning as the typical @c main() + function. */ wxCmdLineParser(int argc, char** argv); /** Constructor which specifies the command line to parse. - This is the traditional (Unix) command line format. The parameters @a argc and @a argv have the same meaning as the typical - @c main() function. - - This constructor is only available in Unicode build. + @c main() function, but the latter uses wide character strings. */ wxCmdLineParser(int argc, wchar_t** argv);