summaryrefslogtreecommitdiff
path: root/svtools
diff options
context:
space:
mode:
authorGabor Kelemen <kelemeng@ubuntu.com>2017-04-05 18:07:52 +0200
committerSamuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>2017-04-07 08:28:52 +0000
commit359ff94950bc11c31685a6ca6280d4230b9e2f1b (patch)
tree52890a83bbe6989504f2bee093f78b5233c40495 /svtools
parentd78040aadb6a8e3eeee1652b62a06d6e7e9b28ce (diff)
Drop remains of the Welcome Screen feature
Which was dropped in e299ef4952a580bdbd416cef3e1a2feba4979e13 (that was in 2001) Change-Id: I5860bb44ced35b338f667e47d89f6ed1d597dc11 Reviewed-on: https://gerrit.libreoffice.org/36159 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
Diffstat (limited to 'svtools')
-rw-r--r--svtools/source/config/helpopt.cxx14
1 files changed, 0 insertions, 14 deletions
diff --git a/svtools/source/config/helpopt.cxx b/svtools/source/config/helpopt.cxx
index d3dc601493ee..c25f51d5161c 100644
--- a/svtools/source/config/helpopt.cxx
+++ b/svtools/source/config/helpopt.cxx
@@ -54,7 +54,6 @@ class SvtHelpOptions_Impl : public utl::ConfigItem
{
bool bExtendedHelp;
bool bHelpTips;
- bool bWelcomeScreen;
OUString aLocale;
OUString aSystem;
OUString sHelpStyleSheet;
@@ -75,8 +74,6 @@ public:
void SetHelpTips( bool b ) { bHelpTips = b; SetModified(); }
bool IsHelpTips() const { return bHelpTips; }
- void SetWelcomeScreen( bool b ) { bWelcomeScreen = b; SetModified(); }
- bool IsWelcomeScreen() const { return bWelcomeScreen; }
const OUString& GetSystem() const { return aSystem; }
const OUString& GetHelpStyleSheet()const{return sHelpStyleSheet;}
@@ -125,7 +122,6 @@ SvtHelpOptions_Impl::SvtHelpOptions_Impl()
: ConfigItem( "Office.Common/Help" )
, bExtendedHelp( false )
, bHelpTips( true )
- , bWelcomeScreen( false )
{
Sequence< OUString > aNames = GetPropertyNames();
Load( aNames );
@@ -298,16 +294,6 @@ bool SvtHelpOptions::IsHelpTips() const
return pImpl->IsHelpTips();
}
-void SvtHelpOptions::SetWelcomeScreen( bool b )
-{
- pImpl->SetWelcomeScreen( b );
-}
-
-bool SvtHelpOptions::IsWelcomeScreen() const
-{
- return pImpl->IsWelcomeScreen();
-}
-
OUString SvtHelpOptions::GetSystem() const
{
return pImpl->GetSystem();