summaryrefslogtreecommitdiff
path: root/sfx2
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2018-06-11 13:50:47 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2018-06-12 08:24:45 +0200
commit1c3ffcdd4e702264728d222046c401b90cb1c8c9 (patch)
treeda40599532933bcc4f6363d56423150b07b2bc44 /sfx2
parent48ca5005ecea5286564c682f6d75716f3c4d8451 (diff)
loplugin:constantparam
Change-Id: Ia769b3176aea287cd57414d7ce8e88c6da43883e Reviewed-on: https://gerrit.libreoffice.org/55622 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sfx2')
-rw-r--r--sfx2/source/dialog/tabdlg.cxx5
1 files changed, 2 insertions, 3 deletions
diff --git a/sfx2/source/dialog/tabdlg.cxx b/sfx2/source/dialog/tabdlg.cxx
index fcbc22b46783..5521fe9a0305 100644
--- a/sfx2/source/dialog/tabdlg.cxx
+++ b/sfx2/source/dialog/tabdlg.cxx
@@ -1448,9 +1448,8 @@ SfxTabDialogController::SfxTabDialogController
(
weld::Window* pParent, // Parent Window
const OUString& rUIXMLDescription, const OString& rID, // Dialog .ui path, Dialog Name
- const SfxItemSet* pItemSet, // Itemset with the data;
+ const SfxItemSet* pItemSet // Itemset with the data;
// can be NULL, when Pages are onDemand
- bool bEditFmt // when yes -> additional Button for standard
)
: GenericDialogController(pParent, rUIXMLDescription, rID)
, m_xTabCtrl(m_xBuilder->weld_notebook("tabcontrol"))
@@ -1463,7 +1462,7 @@ SfxTabDialogController::SfxTabDialogController
, m_pOutSet(nullptr)
, m_pRanges(nullptr)
{
- Init_Impl(bEditFmt);
+ Init_Impl(/*bEditFmt*/false);
}
void SfxTabDialogController::Init_Impl(bool /*bFmtFlag*/)