diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-08-12 08:36:15 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-08-12 09:02:03 +0100 |
commit | d24df3fc66614eda59d38f6ab409be73f8a20dad (patch) | |
tree | 0e8d4a1c123b12b6718b185e338ff6e1d0cb1d09 /sfx2 | |
parent | 4347d844646907ba31dc1e0c7f53c5a93d986c2a (diff) |
callcatcher: another round of ResId removals
Change-Id: Ia3acdb3501b7735820258cb090e731f5814bc07f
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/source/dialog/basedlgs.cxx | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/sfx2/source/dialog/basedlgs.cxx b/sfx2/source/dialog/basedlgs.cxx index a22f5fb64e8e..b3cce37aaef1 100644 --- a/sfx2/source/dialog/basedlgs.cxx +++ b/sfx2/source/dialog/basedlgs.cxx @@ -146,31 +146,11 @@ void SfxModalDialog::GetDialogData_Impl() } } - - void SfxModalDialog::init() { GetDialogData_Impl(); } - - -SfxModalDialog::SfxModalDialog(Window* pParent, const ResId &rResId ) - -/* [Description] - - Constructor of the general base class for modal Dialoge; - ResId is used as ID in ini-file. The saved position from there is set. -*/ - -: ModalDialog(pParent, rResId), - nUniqId(rResId.GetId()), - pInputSet(0), - pOutputSet(0) -{ - init(); -} - SfxModalDialog::SfxModalDialog(Window *pParent, const OString& rID, const OUString& rUIXMLDescription ) : ModalDialog(pParent, rID, rUIXMLDescription), nUniqId(0), //todo: remove this member when the ResId using ctor is removed @@ -180,8 +160,6 @@ SfxModalDialog::SfxModalDialog(Window *pParent, const OString& rID, const OUStri init(); } - - SfxModalDialog::~SfxModalDialog() /* [Description] |