Don't show docview sample --mdi option in help if it's not supported
No real changes, just avoid describing the "--mdi" option in the help message if it's not really supported in this library build.
This commit is contained in:
@@ -92,7 +92,9 @@ MyApp::MyApp()
|
|||||||
namespace CmdLineOption
|
namespace CmdLineOption
|
||||||
{
|
{
|
||||||
|
|
||||||
|
#if wxUSE_MDI_ARCHITECTURE
|
||||||
const char * const MDI = "mdi";
|
const char * const MDI = "mdi";
|
||||||
|
#endif // wxUSE_MDI_ARCHITECTURE
|
||||||
const char * const SDI = "sdi";
|
const char * const SDI = "sdi";
|
||||||
const char * const SINGLE = "single";
|
const char * const SINGLE = "single";
|
||||||
|
|
||||||
@@ -102,8 +104,10 @@ void MyApp::OnInitCmdLine(wxCmdLineParser& parser)
|
|||||||
{
|
{
|
||||||
wxApp::OnInitCmdLine(parser);
|
wxApp::OnInitCmdLine(parser);
|
||||||
|
|
||||||
|
#if wxUSE_MDI_ARCHITECTURE
|
||||||
parser.AddSwitch("", CmdLineOption::MDI,
|
parser.AddSwitch("", CmdLineOption::MDI,
|
||||||
"run in MDI mode: multiple documents, single window");
|
"run in MDI mode: multiple documents, single window");
|
||||||
|
#endif // wxUSE_MDI_ARCHITECTURE
|
||||||
parser.AddSwitch("", CmdLineOption::SDI,
|
parser.AddSwitch("", CmdLineOption::SDI,
|
||||||
"run in SDI mode: multiple documents, multiple windows");
|
"run in SDI mode: multiple documents, multiple windows");
|
||||||
parser.AddSwitch("", CmdLineOption::SINGLE,
|
parser.AddSwitch("", CmdLineOption::SINGLE,
|
||||||
|
Reference in New Issue
Block a user