summaryrefslogtreecommitdiffstats
path: root/include/sfx2/basedlgs.hxx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2013-08-21 15:05:46 +0100
committerCaolán McNamara <caolanm@redhat.com>2013-08-21 20:11:08 +0100
commit962c5052eec48774255f3115f88170c3ebb246b0 (patch)
treedef774c5b57d39a45767dd3b4aecc956aa41612d /include/sfx2/basedlgs.hxx
parentmake SfxTabPage::GetTabDialog always work (diff)
downloadcore-962c5052eec48774255f3115f88170c3ebb246b0.tar.gz
core-962c5052eec48774255f3115f88170c3ebb246b0.zip
convert edit fields singletab dialog to layout .ui
Change-Id: I3d58d93ac2686ea16fde4118b7133176d3713af7
Diffstat (limited to 'include/sfx2/basedlgs.hxx')
-rw-r--r--include/sfx2/basedlgs.hxx10
1 files changed, 9 insertions, 1 deletions
diff --git a/include/sfx2/basedlgs.hxx b/include/sfx2/basedlgs.hxx
index 609d639e9ed4..11854d21c31b 100644
--- a/include/sfx2/basedlgs.hxx
+++ b/include/sfx2/basedlgs.hxx
@@ -181,9 +181,11 @@ typedef sal_uInt16* (*GetTabPageRanges)(); // liefert internationale Which-Werte
class SFX2_DLLPUBLIC SfxSingleTabDialogBase : public SfxModalDialog
{
public:
- //layout ctor
+ //layout ctors
SfxSingleTabDialogBase(Window *pParent, const SfxItemSet& rOptionsSet,
const OString& rID, const OUString& rUIXMLDescription);
+ SfxSingleTabDialogBase(Window *pParent, const SfxItemSet* pInSet,
+ const OString& rID, const OUString& rUIXMLDescription);
//non-layout ctors
SfxSingleTabDialogBase( Window* pParent, const SfxItemSet& rOptionsSet, sal_uInt16 nUniqueId );
@@ -217,6 +219,12 @@ public:
: SfxSingleTabDialogBase(pParent, rOptionsSet, rID, rUIXMLDescription)
{
}
+ SfxSingleTabDialog(Window *pParent, const SfxItemSet* pInSet = 0,
+ const OString& rID = OString("SingleTabDialog"),
+ const OUString& rUIXMLDescription = OUString("sfx/ui/singletabdialog.ui"))
+ : SfxSingleTabDialogBase(pParent, pInSet, rID, rUIXMLDescription)
+ {
+ }
void setTabPage(SfxTabPage* pTabPage, GetTabPageRanges pRangesFunc = 0, sal_uInt32 nSettingsId = 0);
};