diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-02-10 09:29:34 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-02-10 11:21:03 +0000 |
commit | 2b12a5b87b1de9ae95d9562ba21201890b1100c5 (patch) | |
tree | ae0c1b5064c4d92e65db301e4d8acd87e891b159 /svx | |
parent | a95b58060b01046a8881e97e0c5016e44200dd32 (diff) |
the return of callcatcher
Change-Id: I447ebcc61ff061bce15678c6fcfd3d0a4669908f
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/dialog/dialcontrol.cxx | 7 | ||||
-rw-r--r-- | svx/source/dialog/dlgctrl.cxx | 18 | ||||
-rw-r--r-- | svx/source/dialog/langbox.cxx | 9 | ||||
-rw-r--r-- | svx/source/dialog/txencbox.cxx | 7 | ||||
-rw-r--r-- | svx/source/dialog/wrapfield.cxx | 5 |
5 files changed, 0 insertions, 46 deletions
diff --git a/svx/source/dialog/dialcontrol.cxx b/svx/source/dialog/dialcontrol.cxx index 69400e1a4a13..632a873fb126 100644 --- a/svx/source/dialog/dialcontrol.cxx +++ b/svx/source/dialog/dialcontrol.cxx @@ -265,13 +265,6 @@ void DialControl::DialControl_Impl::SetSize( const Size& rWinSize ) // ============================================================================ -DialControl::DialControl( Window* pParent, const ResId& rResId ) : - Control( pParent, rResId ), - mpImpl( new DialControl_Impl( *this ) ) -{ - Init( GetOutputSizePixel() ); -} - DialControl::DialControl( Window* pParent, WinBits nBits ) : Control( pParent, nBits ), mpImpl( new DialControl_Impl( *this ) ) diff --git a/svx/source/dialog/dlgctrl.cxx b/svx/source/dialog/dlgctrl.cxx index 11ecdca74cbf..78c7bb2d83da 100644 --- a/svx/source/dialog/dlgctrl.cxx +++ b/svx/source/dialog/dlgctrl.cxx @@ -66,24 +66,6 @@ Bitmap& SvxRectCtl::GetRectBitmap( void ) return *pBitmap; } -SvxRectCtl::SvxRectCtl( Window* pParent, const ResId& rResId, RECT_POINT eRpt, - sal_uInt16 nBorder, sal_uInt16 nCircle, CTL_STYLE eStyle ) : - - Control( pParent, rResId ), - - pAccContext ( NULL ), - nBorderWidth( nBorder ), - nRadius ( nCircle), - eDefRP ( eRpt ), - eCS ( eStyle ), - pBitmap ( NULL ), - m_nState ( 0 ), - mbCompleteDisable(sal_False) -{ - SetMapMode( MAP_100TH_MM ); - Resize_Impl(); -} - SvxRectCtl::SvxRectCtl(Window* pParent, RECT_POINT eRpt, sal_uInt16 nBorder, sal_uInt16 nCircle, CTL_STYLE eStyle) : Control(pParent, WB_BORDER | WB_TABSTOP) diff --git a/svx/source/dialog/langbox.cxx b/svx/source/dialog/langbox.cxx index 501a2fe615d2..bd024f4a9585 100644 --- a/svx/source/dialog/langbox.cxx +++ b/svx/source/dialog/langbox.cxx @@ -119,15 +119,6 @@ sal_uInt16 TypeToPos_Impl( LanguageType eType, const ListBox& rLb ) return nPos; } -//------------------------------------------------------------------------ -SvxLanguageBox::SvxLanguageBox( Window* pParent, const ResId& rResId, sal_Bool bCheck ) : - ListBox( pParent, rResId ), - m_pSpellUsedLang( NULL ), - m_bWithCheckmark( bCheck ) -{ - Init(); -} - SvxLanguageBox::SvxLanguageBox( Window* pParent, WinBits nBits, sal_Bool bCheck ) : ListBox( pParent, nBits ) , m_pSpellUsedLang( NULL ) diff --git a/svx/source/dialog/txencbox.cxx b/svx/source/dialog/txencbox.cxx index 8571bdaf6f12..33d7ee435ff5 100644 --- a/svx/source/dialog/txencbox.cxx +++ b/svx/source/dialog/txencbox.cxx @@ -35,13 +35,6 @@ // class SvxTextEncodingBox //======================================================================== -SvxTextEncodingBox::SvxTextEncodingBox( Window* pParent, const ResId& rResId ) - : - ListBox( pParent, rResId ) -{ - m_pEncTable = new SvxTextEncodingTable; -} - SvxTextEncodingBox::SvxTextEncodingBox( Window* pParent, WinBits nBits ) : ListBox( pParent, nBits ) { diff --git a/svx/source/dialog/wrapfield.cxx b/svx/source/dialog/wrapfield.cxx index 76302d801ca3..46464997cf55 100644 --- a/svx/source/dialog/wrapfield.cxx +++ b/svx/source/dialog/wrapfield.cxx @@ -22,11 +22,6 @@ namespace svx { -WrapField::WrapField( Window* pParent, const ResId& rResId ) : - NumericField( pParent, rResId ) -{ -} - WrapField::WrapField( Window* pParent, WinBits nBits ) : NumericField( pParent, nBits ) { |