summaryrefslogtreecommitdiff
path: root/include/sfx2/basedlgs.hxx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2019-03-20 11:18:47 +0000
committerCaolán McNamara <caolanm@redhat.com>2019-03-20 14:22:32 +0100
commit9f5cf96bd8b0d33a4505e941025f93af776159a9 (patch)
tree191b7c02828ff72d45dafe4b49980f09f0762036 /include/sfx2/basedlgs.hxx
parentbfa7db29bd5077c4c8be6ccd9dfd80f974c1e148 (diff)
weld SwFieldEditDlg
Change-Id: I786944a4bf8979526f0ccae5b00fb42ad5016a66 Reviewed-on: https://gerrit.libreoffice.org/69463 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'include/sfx2/basedlgs.hxx')
-rw-r--r--include/sfx2/basedlgs.hxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/sfx2/basedlgs.hxx b/include/sfx2/basedlgs.hxx
index 0b3d526888b5..6b86abed0b01 100644
--- a/include/sfx2/basedlgs.hxx
+++ b/include/sfx2/basedlgs.hxx
@@ -243,7 +243,7 @@ private:
const SfxItemSet* m_pInputSet;
public:
- SfxSingleTabDialogController(weld::Widget* pParent, const SfxItemSet& rOptionsSet,
+ SfxSingleTabDialogController(weld::Widget* pParent, const SfxItemSet* pOptionsSet,
const OUString& rUIXMLDescription = OUString("sfx/ui/singletabdialog.ui"),
const OString& rID = OString("SingleTabDialog"));
@@ -252,6 +252,7 @@ public:
virtual ~SfxSingleTabDialogController() override;
void SetTabPage(SfxTabPage* pTabPage);
+ SfxTabPage* GetTabPage() const { return m_xSfxPage.get(); }
virtual weld::Button& GetOKButton() const override { return *m_xOKBtn; }
virtual const SfxItemSet* GetExampleSet() const override { return nullptr; }