diff options
author | Caolán McNamara <caolanm@redhat.com> | 2019-03-20 11:18:47 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2019-03-20 14:22:32 +0100 |
commit | 9f5cf96bd8b0d33a4505e941025f93af776159a9 (patch) | |
tree | 191b7c02828ff72d45dafe4b49980f09f0762036 /sfx2/source | |
parent | bfa7db29bd5077c4c8be6ccd9dfd80f974c1e148 (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 'sfx2/source')
-rw-r--r-- | sfx2/source/dialog/basedlgs.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sfx2/source/dialog/basedlgs.cxx b/sfx2/source/dialog/basedlgs.cxx index 43312afa52aa..b5056df8b1a9 100644 --- a/sfx2/source/dialog/basedlgs.cxx +++ b/sfx2/source/dialog/basedlgs.cxx @@ -844,10 +844,10 @@ IMPL_STATIC_LINK_NOARG(SfxDialogController, InstallLOKNotifierHdl, void*, vcl::I return SfxViewShell::Current(); } -SfxSingleTabDialogController::SfxSingleTabDialogController(weld::Widget *pParent, const SfxItemSet& rSet, +SfxSingleTabDialogController::SfxSingleTabDialogController(weld::Widget *pParent, const SfxItemSet* pSet, const OUString& rUIXMLDescription, const OString& rID) : SfxOkDialogController(pParent, rUIXMLDescription, rID) - , m_pInputSet(&rSet) + , m_pInputSet(pSet) , m_xContainer(m_xDialog->weld_content_area()) , m_xOKBtn(m_xBuilder->weld_button("ok")) , m_xHelpBtn(m_xBuilder->weld_button("help")) |