diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-08-27 00:06:55 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-08-29 09:56:06 +0100 |
commit | fa19c5ec0844456a485cb7eb4a64f9d9c6d678bf (patch) | |
tree | a2426854601f2dff447fee8438badd1397959667 /unotools | |
parent | fea6627b6170a2921d3cac228f857c8bf9f70def (diff) |
callcatcher: various
Diffstat (limited to 'unotools')
-rw-r--r-- | unotools/inc/unotools/moduleoptions.hxx | 3 | ||||
-rw-r--r-- | unotools/inc/unotools/startoptions.hxx | 16 | ||||
-rw-r--r-- | unotools/source/config/moduleoptions.cxx | 15 | ||||
-rw-r--r-- | unotools/source/config/startoptions.cxx | 18 |
4 files changed, 0 insertions, 52 deletions
diff --git a/unotools/inc/unotools/moduleoptions.hxx b/unotools/inc/unotools/moduleoptions.hxx index a2b89f98528b..febf4f63f862 100644 --- a/unotools/inc/unotools/moduleoptions.hxx +++ b/unotools/inc/unotools/moduleoptions.hxx @@ -146,7 +146,6 @@ class UNOTOOLS_DLLPUBLIC SvtModuleOptions: public utl::detail::Options ::rtl::OUString GetFactoryName ( EFactory eFactory ) const; ::rtl::OUString GetFactoryShortName ( EFactory eFactory ) const; ::rtl::OUString GetFactoryStandardTemplate( EFactory eFactory ) const; - ::rtl::OUString GetFactoryWindowAttributes( EFactory eFactory ) const; ::rtl::OUString GetFactoryEmptyDocumentURL( EFactory eFactory ) const; ::rtl::OUString GetFactoryDefaultFilter ( EFactory eFactory ) const; sal_Bool IsDefaultFilterReadonly ( EFactory eFactory ) const; @@ -155,8 +154,6 @@ class UNOTOOLS_DLLPUBLIC SvtModuleOptions: public utl::detail::Options EFactory& eFactory ); void SetFactoryStandardTemplate( EFactory eFactory , const ::rtl::OUString& sTemplate ); - void SetFactoryWindowAttributes( EFactory eFactory , - const ::rtl::OUString& sAttributes); void SetFactoryDefaultFilter ( EFactory eFactory , const ::rtl::OUString& sFilter ); diff --git a/unotools/inc/unotools/startoptions.hxx b/unotools/inc/unotools/startoptions.hxx index 7c964960999b..464c2a433446 100644 --- a/unotools/inc/unotools/startoptions.hxx +++ b/unotools/inc/unotools/startoptions.hxx @@ -101,22 +101,6 @@ class UNOTOOLS_DLLPUBLIC SvtStartOptions: public utl::detail::Options //--------------------------------------------------------------------------------------------------------- /*-****************************************************************************************************//** - @short interface methods to get and set value of config key "org.openoffice.Office.Common/Start/..." - @descr These options describe internal states to enable/disable features of installed office. - The values are fixed at runtime - and implemented as readonly! - - IsIntroEnabled() : Setting, if the StarOffice Logo is displayed when starting StarOffice. - Default = true - - EnableIntro() : Use it to enable/disable the logo at startup. - - @seealso configuration package "org.openoffice.Office.Common/Start" - *//*-*****************************************************************************************************/ - - sal_Bool IsIntroEnabled ( ) const ; - void EnableIntro ( sal_Bool bState ) ; - - /*-****************************************************************************************************//** @short returns or set the connection URL of an office @descr Specifies the URL for an UNO connection. No default is given, the URL has to be entered manually by the admin/user. diff --git a/unotools/source/config/moduleoptions.cxx b/unotools/source/config/moduleoptions.cxx index c275a910510e..4ea66c92e006 100644 --- a/unotools/source/config/moduleoptions.cxx +++ b/unotools/source/config/moduleoptions.cxx @@ -1134,13 +1134,6 @@ sal_Bool SvtModuleOptions::IsModuleInstalled( EModule eModule ) const } //***************************************************************************************************************** -::rtl::OUString SvtModuleOptions::GetFactoryWindowAttributes( EFactory eFactory ) const -{ - ::osl::MutexGuard aGuard( impl_GetOwnStaticMutex() ); - return m_pDataContainer->GetFactoryWindowAttributes( eFactory ); -} - -//***************************************************************************************************************** ::rtl::OUString SvtModuleOptions::GetFactoryEmptyDocumentURL( EFactory eFactory ) const { ::osl::MutexGuard aGuard( impl_GetOwnStaticMutex() ); @@ -1184,14 +1177,6 @@ void SvtModuleOptions::SetFactoryStandardTemplate( EFactory eFacto } //***************************************************************************************************************** -void SvtModuleOptions::SetFactoryWindowAttributes( EFactory eFactory , - const ::rtl::OUString& sAttributes) -{ - ::osl::MutexGuard aGuard( impl_GetOwnStaticMutex() ); - m_pDataContainer->SetFactoryWindowAttributes( eFactory, sAttributes ); -} - -//***************************************************************************************************************** void SvtModuleOptions::SetFactoryDefaultFilter( EFactory eFactory, const ::rtl::OUString& sFilter ) { diff --git a/unotools/source/config/startoptions.cxx b/unotools/source/config/startoptions.cxx index edeab14539c0..cd1ce9c25b75 100644 --- a/unotools/source/config/startoptions.cxx +++ b/unotools/source/config/startoptions.cxx @@ -394,24 +394,6 @@ SvtStartOptions::~SvtStartOptions() //***************************************************************************************************************** // public method //***************************************************************************************************************** -sal_Bool SvtStartOptions::IsIntroEnabled() const -{ - MutexGuard aGuard( GetOwnStaticMutex() ); - return m_pDataContainer->IsIntroEnabled(); -} - -//***************************************************************************************************************** -// public method -//***************************************************************************************************************** -void SvtStartOptions::EnableIntro( sal_Bool bState ) -{ - MutexGuard aGuard( GetOwnStaticMutex() ); - m_pDataContainer->EnableIntro( bState ); -} - -//***************************************************************************************************************** -// public method -//***************************************************************************************************************** OUString SvtStartOptions::GetConnectionURL() const { MutexGuard aGuard( GetOwnStaticMutex() ); |