summaryrefslogtreecommitdiff
path: root/sfx2
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-08-18 08:26:48 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-08-18 09:34:55 +0100
commitb5a0b00d494928482e4dd44395765c480c8ae252 (patch)
treee50d32b261b9d92334a4f2bd8a66ab94c100013b /sfx2
parente2b9531e43d37677109aa13eb6e2ebf857961016 (diff)
callcatcher: another round of resource ctor removals
Change-Id: Ic554fa7c1e549a0f39296836868b22ccf4c859d3
Diffstat (limited to 'sfx2')
-rw-r--r--sfx2/source/dialog/tabdlg.cxx32
1 files changed, 0 insertions, 32 deletions
diff --git a/sfx2/source/dialog/tabdlg.cxx b/sfx2/source/dialog/tabdlg.cxx
index dcf6d310b2c2..e0a7ce4ccebb 100644
--- a/sfx2/source/dialog/tabdlg.cxx
+++ b/sfx2/source/dialog/tabdlg.cxx
@@ -163,24 +163,6 @@ void SfxTabPage::SetFrame(const ::com::sun::star::uno::Reference< ::com::sun::st
return ::com::sun::star::uno::Reference< ::com::sun::star::frame::XFrame >();
}
-SfxTabPage::SfxTabPage( Window *pParent,
- const ResId &rResId, const SfxItemSet &rAttrSet ) :
-
-/* [Description]
-
- Constructor
-*/
-
- TabPage( pParent, rResId ),
-
- pSet ( &rAttrSet ),
- bHasExchangeSupport ( false ),
- pImpl ( new TabPageImpl )
-
-{
-}
-
-
SfxTabPage::SfxTabPage(Window *pParent, const OString& rID, const OUString& rUIXMLDescription, const SfxItemSet *rAttrSet)
: TabPage(pParent, rID, rUIXMLDescription)
, pSet ( rAttrSet )
@@ -189,50 +171,36 @@ SfxTabPage::SfxTabPage(Window *pParent, const OString& rID, const OUString& rUIX
{
}
-
-
SfxTabPage::~SfxTabPage()
-
/* [Description]
Destructor
*/
-
{
delete pImpl;
}
-
-
bool SfxTabPage::FillItemSet( SfxItemSet* rSet )
{
return pImpl->maItemConn.DoFillItemSet( *rSet, GetItemSet() );
}
-
-
void SfxTabPage::Reset( const SfxItemSet* rSet )
{
pImpl->maItemConn.DoApplyFlags( *rSet );
pImpl->maItemConn.DoReset( *rSet );
}
-
-
void SfxTabPage::ActivatePage( const SfxItemSet& )
-
/* [Description]
Default implementation of the virtual ActivatePage method. This method is
called when a page of dialogue supports the exchange of data between pages.
<SfxTabPage::DeactivatePage(SfxItemSet *)>
*/
-
{
}
-
-
int SfxTabPage::DeactivatePage( SfxItemSet* )
/* [Description]