summaryrefslogtreecommitdiff
path: root/svtools
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-02-10 09:29:34 +0000
committerCaolán McNamara <caolanm@redhat.com>2014-02-10 11:21:03 +0000
commit2b12a5b87b1de9ae95d9562ba21201890b1100c5 (patch)
treeae0c1b5064c4d92e65db301e4d8acd87e891b159 /svtools
parenta95b58060b01046a8881e97e0c5016e44200dd32 (diff)
the return of callcatcher
Change-Id: I447ebcc61ff061bce15678c6fcfd3d0a4669908f
Diffstat (limited to 'svtools')
-rw-r--r--svtools/source/contnr/svtabbx.cxx12
-rw-r--r--svtools/source/control/accessibleruler.cxx16
-rw-r--r--svtools/source/control/fmtfield.cxx12
3 files changed, 0 insertions, 40 deletions
diff --git a/svtools/source/contnr/svtabbx.cxx b/svtools/source/contnr/svtabbx.cxx
index adb759c8bd4b..feee0a46975f 100644
--- a/svtools/source/contnr/svtabbx.cxx
+++ b/svtools/source/contnr/svtabbx.cxx
@@ -528,18 +528,6 @@ SvHeaderTabListBox::SvHeaderTabListBox( Window* pParent, WinBits nWinStyle ) :
// -----------------------------------------------------------------------
-SvHeaderTabListBox::SvHeaderTabListBox( Window* pParent, const ResId& rResId ) :
-
- SvTabListBox( pParent, rResId ),
-
- m_bFirstPaint ( sal_True ),
- m_pImpl ( new ::svt::SvHeaderTabListBoxImpl ),
- m_pAccessible ( NULL )
-{
-}
-
-// -----------------------------------------------------------------------
-
SvHeaderTabListBox::~SvHeaderTabListBox()
{
delete m_pImpl;
diff --git a/svtools/source/control/accessibleruler.cxx b/svtools/source/control/accessibleruler.cxx
index 02e4f5329613..6a42ae762ef4 100644
--- a/svtools/source/control/accessibleruler.cxx
+++ b/svtools/source/control/accessibleruler.cxx
@@ -385,22 +385,6 @@ Sequence< sal_Int8 > SAL_CALL SvtRulerAccessible::getImplementationId( void ) th
return getUniqueId();
}
-//===== internals ========================================================
-void SvtRulerAccessible::setName( const OUString& rName )
-{
- msName = rName;
-
-}
-
-void SvtRulerAccessible::setDescription( const OUString& rDescr )
-{
-
- msDescription = rDescr;
-
-}
-
-
-
void SAL_CALL SvtRulerAccessible::disposing()
{
if( !rBHelper.bDisposed )
diff --git a/svtools/source/control/fmtfield.cxx b/svtools/source/control/fmtfield.cxx
index 95587f1dcf23..9f04b9fa9e6c 100644
--- a/svtools/source/control/fmtfield.cxx
+++ b/svtools/source/control/fmtfield.cxx
@@ -332,18 +332,6 @@ FormattedField::FormattedField(Window* pParent, WinBits nStyle, SvNumberFormatte
}
}
-FormattedField::FormattedField(Window* pParent, const ResId& rResId, SvNumberFormatter* pInitialFormatter, sal_Int32 nFormatKey)
- :SpinField(pParent, rResId)
- ,INIT_MEMBERS()
-{
- DBG_CTOR(FormattedField, NULL);
-
- if (pInitialFormatter)
- {
- m_pFormatter = pInitialFormatter;
- m_nFormatKey = nFormatKey;
- }
-}
extern "C" SAL_DLLPUBLIC_EXPORT Window* SAL_CALL makeFormattedField(Window *pParent, VclBuilder::stringmap &)
{
WinBits nWinBits = WB_BORDER;