summaryrefslogtreecommitdiff
path: root/desktop
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2015-03-29 23:20:59 +0300
committerTor Lillqvist <tml@collabora.com>2015-03-29 23:51:03 +0300
commitdb255d5a4e35f38c4bb4755970506d841c98edb2 (patch)
tree0a0d62ecaaee6090a75aaed8372523adf2e15c80 /desktop
parent9e53fbd9a67bbfc35aa6b96dc034df9f6ecf5643 (diff)
m_nofirststartwizard was never tested
Change-Id: Ibd74eae829eb6bf5366a474628c1bf5ff6b4e839
Diffstat (limited to 'desktop')
-rw-r--r--desktop/source/app/cmdlineargs.cxx3
-rw-r--r--desktop/source/app/cmdlineargs.hxx1
2 files changed, 1 insertions, 3 deletions
diff --git a/desktop/source/app/cmdlineargs.cxx b/desktop/source/app/cmdlineargs.cxx
index dd77aafb061f..9bbc36ffa29f 100644
--- a/desktop/source/app/cmdlineargs.cxx
+++ b/desktop/source/app/cmdlineargs.cxx
@@ -210,7 +210,7 @@ void CommandLineArgs::ParseCommandLine_Impl( Supplier& supplier )
}
else if ( oArg == "nofirststartwizard" )
{
- m_nofirststartwizard = true;
+ // Do nothing, accept only for backward compatibility
}
else if ( oArg == "nologo" )
{
@@ -600,7 +600,6 @@ void CommandLineArgs::InitParamValues()
m_quickstart = false;
m_noquickstart = false;
m_terminateafterinit = false;
- m_nofirststartwizard = false;
m_nologo = false;
m_nolockcheck = false;
m_nodefault = false;
diff --git a/desktop/source/app/cmdlineargs.hxx b/desktop/source/app/cmdlineargs.hxx
index 580466f5bf24..7b8c0da62dff 100644
--- a/desktop/source/app/cmdlineargs.hxx
+++ b/desktop/source/app/cmdlineargs.hxx
@@ -126,7 +126,6 @@ class CommandLineArgs: private boost::noncopyable
bool m_quickstart;
bool m_noquickstart;
bool m_terminateafterinit;
- bool m_nofirststartwizard;
bool m_nologo;
bool m_nolockcheck;
bool m_nodefault;