summaryrefslogtreecommitdiff
path: root/sfx2/source/dialog
diff options
context:
space:
mode:
Diffstat (limited to 'sfx2/source/dialog')
-rw-r--r--sfx2/source/dialog/basedlgs.cxx22
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]