summaryrefslogtreecommitdiff
path: root/include/sfx2/basedlgs.hxx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2018-04-02 14:20:14 +0100
committerCaolán McNamara <caolanm@redhat.com>2018-04-02 18:29:22 +0200
commit75a271fdc40aab116c1468683e64f843d292dc48 (patch)
tree14b1aeeaab2f26febdd9a4a9415e624b458d2397 /include/sfx2/basedlgs.hxx
parent840be9fdccb99eb3faccf9695186810eba5de8e4 (diff)
can now remove ResId based config id scheme
Change-Id: Id1ad413dacc7eb07269debba65426236bef28610 Reviewed-on: https://gerrit.libreoffice.org/52259 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.hxx5
1 files changed, 1 insertions, 4 deletions
diff --git a/include/sfx2/basedlgs.hxx b/include/sfx2/basedlgs.hxx
index 670fc10f7238..f5f40b8d6748 100644
--- a/include/sfx2/basedlgs.hxx
+++ b/include/sfx2/basedlgs.hxx
@@ -45,7 +45,6 @@ class FixedLine;
class SFX2_DLLPUBLIC SfxModalDialog: public ModalDialog
{
- sal_uInt32 nUniqId;
OUString aExtraData;
const SfxItemSet* pInputSet;
SfxItemSet* pOutputSet;
@@ -61,8 +60,6 @@ protected:
SfxModalDialog(vcl::Window *pParent, const OUString& rID, const OUString& rUIXMLDescription);
OUString& GetExtraData() { return aExtraData; }
- sal_uInt32 GetUniqId() const { return nUniqId; }
- void SetUniqId(sal_uInt32 nSettingsId) { nUniqId = nSettingsId; }
void CreateOutputItemSet( SfxItemPool& rPool );
void CreateOutputItemSet( const SfxItemSet& rInput );
void SetInputSet( const SfxItemSet* pInSet ) { pInputSet = pInSet; }
@@ -177,7 +174,7 @@ public:
virtual ~SfxSingleTabDialog() override;
virtual void dispose() override;
- void SetTabPage(SfxTabPage* pTabPage, sal_uInt32 nSettingsId = 0);
+ void SetTabPage(SfxTabPage* pTabPage);
SfxTabPage* GetTabPage() const { return pImpl->m_pSfxPage; }
OKButton* GetOKButton() const { return pOKBtn; }