summaryrefslogtreecommitdiff
path: root/svx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2012-09-17 12:23:57 +0100
committerCaolán McNamara <caolanm@redhat.com>2012-09-28 08:48:46 +0100
commit3edc54658d0e33c354ba6fd6791769ba31cd553a (patch)
tree4ebebbd0865a16e5a322788953a471fbb9e1e834 /svx
parent472f558a845949b570f4d01bc0401e1132d1da49 (diff)
convert code to use new table width dialog
Change-Id: I50ac81a34945760ccb053ae1c8e328bbdff1a944
Diffstat (limited to 'svx')
-rw-r--r--svx/inc/svx/stddlg.hxx1
-rw-r--r--svx/source/dialog/stddlg.cxx9
2 files changed, 8 insertions, 2 deletions
diff --git a/svx/inc/svx/stddlg.hxx b/svx/inc/svx/stddlg.hxx
index 66385d6cacae..ff77060e4f5f 100644
--- a/svx/inc/svx/stddlg.hxx
+++ b/svx/inc/svx/stddlg.hxx
@@ -28,6 +28,7 @@ class SVX_DLLPUBLIC SvxStandardDialog: public SfxModalDialog
{
public:
SvxStandardDialog( Window* pParent, const ResId& rResId );
+ SvxStandardDialog( Window* pParent, const rtl::OString& rID, const rtl::OUString& rUIXMLDescription );
~SvxStandardDialog();
short Execute();
diff --git a/svx/source/dialog/stddlg.cxx b/svx/source/dialog/stddlg.cxx
index 2f46ce31a09e..85ffbb1c455e 100644
--- a/svx/source/dialog/stddlg.cxx
+++ b/svx/source/dialog/stddlg.cxx
@@ -46,8 +46,13 @@ short SvxStandardDialog::Execute()
// -----------------------------------------------------------------------
-SvxStandardDialog::SvxStandardDialog( Window *pParent, const ResId &rResId ) :
- SfxModalDialog( pParent, rResId )
+SvxStandardDialog::SvxStandardDialog( Window *pParent, const ResId &rResId )
+ : SfxModalDialog( pParent, rResId )
+{
+}
+
+SvxStandardDialog::SvxStandardDialog(Window *pParent, const rtl::OString& rID, const rtl::OUString& rUIXMLDescription )
+ : SfxModalDialog(pParent, rID, rUIXMLDescription)
{
}