summaryrefslogtreecommitdiff
path: root/unotools
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-10-02 08:37:23 +0200
committerNoel Grandin <noel@peralex.com>2015-10-06 10:17:02 +0200
commit7e776c0027c19f1bb8e64dd68d3fd9ded0b5d896 (patch)
tree62bae1461c0388af6f7a8bebbf134e9a86c92153 /unotools
parentd7f2db4b9ce445afdcabf370497bc66db76efbbc (diff)
loplugin:unusedmethods
Change-Id: I150baadc442e57ee604563bc52965daa9d2e41af
Diffstat (limited to 'unotools')
-rw-r--r--unotools/source/config/fontoptions.cxx17
1 files changed, 0 insertions, 17 deletions
diff --git a/unotools/source/config/fontoptions.cxx b/unotools/source/config/fontoptions.cxx
index fa2b52aceecd..bd177fbe1a92 100644
--- a/unotools/source/config/fontoptions.cxx
+++ b/unotools/source/config/fontoptions.cxx
@@ -70,7 +70,6 @@ class SvtFontOptions_Impl : public ConfigItem
*//*-*****************************************************************************************************/
bool IsFontHistoryEnabled ( ) const { return m_bFontHistory;}
- void EnableFontHistory ( bool bState );
bool IsFontWYSIWYGEnabled ( ) const { return m_bFontWYSIWYG;}
void EnableFontWYSIWYG ( bool bState );
@@ -221,14 +220,6 @@ void SvtFontOptions_Impl::ImplCommit()
// public method
-void SvtFontOptions_Impl::EnableFontHistory( bool bState )
-{
- m_bFontHistory = bState;
- SetModified();
-}
-
-// public method
-
void SvtFontOptions_Impl::EnableFontWYSIWYG( bool bState )
{
m_bFontWYSIWYG = bState;
@@ -303,14 +294,6 @@ bool SvtFontOptions::IsFontHistoryEnabled() const
// public method
-void SvtFontOptions::EnableFontHistory( bool bState )
-{
- MutexGuard aGuard( impl_GetOwnStaticMutex() );
- m_pDataContainer->EnableFontHistory( bState );
-}
-
-// public method
-
bool SvtFontOptions::IsFontWYSIWYGEnabled() const
{
MutexGuard aGuard( impl_GetOwnStaticMutex() );