[Libreoffice-commits] core.git: include/sfx2 sfx2/source
Caolán McNamara (via logerrit)
logerrit at kemper.freedesktop.org
Fri Sep 20 19:23:18 UTC 2019
include/sfx2/tabdlg.hxx | 1 -
sfx2/source/dialog/tabdlg.cxx | 8 --------
2 files changed, 9 deletions(-)
New commits:
commit 23bde05fa14c2b307b053ba52300f555158b9e3c
Author: Caolán McNamara <caolanm at redhat.com>
AuthorDate: Fri Sep 20 14:08:19 2019 +0100
Commit: Caolán McNamara <caolanm at redhat.com>
CommitDate: Fri Sep 20 21:21:16 2019 +0200
drop newly unused SfxTabPage ctor
Change-Id: I1bdadb6fb11cafa9e29c09e7886c73aabf3d4274
Reviewed-on: https://gerrit.libreoffice.org/79288
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm at redhat.com>
Tested-by: Caolán McNamara <caolanm at redhat.com>
diff --git a/include/sfx2/tabdlg.hxx b/include/sfx2/tabdlg.hxx
index 851b859796aa..f8a0f99d0e5b 100644
--- a/include/sfx2/tabdlg.hxx
+++ b/include/sfx2/tabdlg.hxx
@@ -178,7 +178,6 @@ protected:
std::unique_ptr<weld::Container> m_xContainer;
protected:
- SfxTabPage(vcl::Window* pParent, const OString& rID, const OUString& rUIXMLDescription, const SfxItemSet *rAttrSet);
SfxTabPage(TabPageParent pParent, const OUString& rUIXMLDescription, const OString& rID, const SfxItemSet *rAttrSet);
sal_uInt16 GetWhich( sal_uInt16 nSlot, bool bDeep = true ) const
diff --git a/sfx2/source/dialog/tabdlg.cxx b/sfx2/source/dialog/tabdlg.cxx
index 585db2f760e1..b2f7f7754a58 100644
--- a/sfx2/source/dialog/tabdlg.cxx
+++ b/sfx2/source/dialog/tabdlg.cxx
@@ -139,14 +139,6 @@ css::uno::Reference< css::frame::XFrame > SfxTabPage::GetFrame() const
return css::uno::Reference< css::frame::XFrame >();
}
-SfxTabPage::SfxTabPage(vcl::Window *pParent, const OString& rID, const OUString& rUIXMLDescription, const SfxItemSet *rAttrSet)
- : TabPage(pParent, rID, rUIXMLDescription)
- , pSet ( rAttrSet )
- , bHasExchangeSupport ( false )
- , pImpl ( new TabPageImpl )
-{
-}
-
SfxTabPage::SfxTabPage(TabPageParent pParent, const OUString& rUIXMLDescription, const OString& rID, const SfxItemSet *rAttrSet)
: TabPage(pParent.pPage ? Application::GetDefDialogParent() : pParent.pParent.get()) //just drag this along hidden in this scenario
, pSet ( rAttrSet )
More information about the Libreoffice-commits
mailing list