Don't mention ANSI build in wxCmdLineParser documentation

Don't mention Unicode build neither, in fact, as it's the default and
only one now anyhow.
This commit is contained in:
Vadim Zeitlin 2022-10-28 23:29:32 +01:00
parent d7f59892b5
commit 76cda18025

View file

@ -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);