summaryrefslogtreecommitdiffstats
path: root/svtools
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2011-08-03 22:25:06 +0100
committerCaolán McNamara <caolanm@redhat.com>2011-08-04 09:36:47 +0100
commit9c0bcbaa53871c1f416828b21695e8ce6eb82e7e (patch)
tree4fbc555aa7d09f8cb7c611809aca5f3338cb03f1 /svtools
parentLookupKeysymInDefaultGroup unused (diff)
downloadcore-9c0bcbaa53871c1f416828b21695e8ce6eb82e7e.tar.gz
core-9c0bcbaa53871c1f416828b21695e8ce6eb82e7e.zip
callcatcher: remove unused methods
Diffstat (limited to 'svtools')
-rw-r--r--svtools/inc/svtools/ctrltool.hxx1
-rw-r--r--svtools/inc/svtools/fileview.hxx1
-rw-r--r--svtools/inc/svtools/helpopt.hxx2
-rw-r--r--svtools/inc/svtools/inettbc.hxx1
-rw-r--r--svtools/source/config/helpopt.cxx14
-rw-r--r--svtools/source/contnr/fileview.cxx6
-rw-r--r--svtools/source/control/ctrltool.cxx11
-rw-r--r--svtools/source/control/inettbc.cxx5
8 files changed, 0 insertions, 41 deletions
diff --git a/svtools/inc/svtools/ctrltool.hxx b/svtools/inc/svtools/ctrltool.hxx
index e5df9eaa8852..79a6fb62dd41 100644
--- a/svtools/inc/svtools/ctrltool.hxx
+++ b/svtools/inc/svtools/ctrltool.hxx
@@ -190,7 +190,6 @@ public:
OutputDevice* GetDevice() const { return mpDev; }
OutputDevice* GetDevice2() const { return mpDev2; }
XubString GetFontMapText( const FontInfo& rInfo ) const;
- sal_uInt16 GetFontNameType( const XubString& rFontName ) const;
const XubString& GetNormalStr() const { return maNormal; }
const XubString& GetItalicStr() const { return maNormalItalic; }
diff --git a/svtools/inc/svtools/fileview.hxx b/svtools/inc/svtools/fileview.hxx
index a1a539224b81..5500836a5da6 100644
--- a/svtools/inc/svtools/fileview.hxx
+++ b/svtools/inc/svtools/fileview.hxx
@@ -209,7 +209,6 @@ public:
void SetConfigString( const String& rCfgStr );
void SetUrlFilter( const IUrlFilter* _pFilter );
- const IUrlFilter* GetUrlFilter( ) const;
void EndInplaceEditing( bool _bCancel );
diff --git a/svtools/inc/svtools/helpopt.hxx b/svtools/inc/svtools/helpopt.hxx
index 92a2ad3793c7..020b64c76b94 100644
--- a/svtools/inc/svtools/helpopt.hxx
+++ b/svtools/inc/svtools/helpopt.hxx
@@ -58,8 +58,6 @@ public:
sal_Bool IsHelpAgentAutoStartMode() const;
void SetHelpAgentTimeoutPeriod( sal_Int32 _nSeconds );
sal_Int32 GetHelpAgentTimeoutPeriod( ) const;
- void SetHelpAgentRetryLimit( sal_Int32 _nTrials );
- sal_Int32 GetHelpAgentRetryLimit( ) const;
const String& GetHelpStyleSheet()const;
void SetHelpStyleSheet(const String& rStyleSheet);
diff --git a/svtools/inc/svtools/inettbc.hxx b/svtools/inc/svtools/inettbc.hxx
index f352dd2fae83..f842378f8e4e 100644
--- a/svtools/inc/svtools/inettbc.hxx
+++ b/svtools/inc/svtools/inettbc.hxx
@@ -97,7 +97,6 @@ public:
void SetFilter(const String& _sFilter);
void SetUrlFilter( const IUrlFilter* _pFilter );
- const IUrlFilter* GetUrlFilter( ) const;
inline void EnableAutocompletion( sal_Bool _bEnable = sal_True )
{ bIsAutoCompleteEnabled = _bEnable; }
diff --git a/svtools/source/config/helpopt.cxx b/svtools/source/config/helpopt.cxx
index f0e64a0a4a24..20cb0f578e58 100644
--- a/svtools/source/config/helpopt.cxx
+++ b/svtools/source/config/helpopt.cxx
@@ -648,20 +648,6 @@ sal_Bool SvtHelpOptions::IsHelpTips() const
// -----------------------------------------------------------------------
-void SvtHelpOptions::SetHelpAgentRetryLimit( sal_Int32 _nTrials )
-{
- pImp->SetHelpAgentRetryLimit( _nTrials );
-}
-
-// -----------------------------------------------------------------------
-
-sal_Int32 SvtHelpOptions::GetHelpAgentRetryLimit( ) const
-{
- return pImp->GetHelpAgentRetryLimit( );
-}
-
-// -----------------------------------------------------------------------
-
void SvtHelpOptions::SetHelpAgentTimeoutPeriod( sal_Int32 _nSeconds )
{
pImp->SetHelpAgentTimeoutPeriod( _nSeconds );
diff --git a/svtools/source/contnr/fileview.cxx b/svtools/source/contnr/fileview.cxx
index e8f6f9cc5b60..f9267dea728a 100644
--- a/svtools/source/contnr/fileview.cxx
+++ b/svtools/source/contnr/fileview.cxx
@@ -1790,12 +1790,6 @@ void SvtFileView::SetUrlFilter( const IUrlFilter* _pFilter )
}
// -----------------------------------------------------------------------
-const IUrlFilter* SvtFileView::GetUrlFilter( ) const
-{
- return mpImp->mpUrlFilter;
-}
-
-// -----------------------------------------------------------------------
void SvtFileView::StateChanged( StateChangedType nStateChange )
{
if ( nStateChange == STATE_CHANGE_ENABLE )
diff --git a/svtools/source/control/ctrltool.cxx b/svtools/source/control/ctrltool.cxx
index ff17a99c5069..9be060d94403 100644
--- a/svtools/source/control/ctrltool.cxx
+++ b/svtools/source/control/ctrltool.cxx
@@ -598,17 +598,6 @@ XubString FontList::GetFontMapText( const FontInfo& rInfo ) const
// -----------------------------------------------------------------------
-sal_uInt16 FontList::GetFontNameType( const XubString& rFontName ) const
-{
- ImplFontListNameInfo* pData = ImplFindByName( rFontName );
- if ( pData )
- return pData->mnType;
- else
- return 0;
-}
-
-// -----------------------------------------------------------------------
-
FontInfo FontList::Get( const XubString& rName, const XubString& rStyleName ) const
{
ImplFontListNameInfo* pData = ImplFindByName( rName );
diff --git a/svtools/source/control/inettbc.cxx b/svtools/source/control/inettbc.cxx
index 0dcb4fb4ce23..50739d84c018 100644
--- a/svtools/source/control/inettbc.cxx
+++ b/svtools/source/control/inettbc.cxx
@@ -1352,11 +1352,6 @@ void SvtURLBox::SetUrlFilter( const IUrlFilter* _pFilter )
pImp->pUrlFilter = _pFilter;
}
-//-------------------------------------------------------------------------
-const IUrlFilter* SvtURLBox::GetUrlFilter( ) const
-{
- return pImp->pUrlFilter;
-}
// -----------------------------------------------------------------------------
void SvtURLBox::SetFilter(const String& _sFilter)
{