From ad1cbee2ffc7b3c10cad6fd69f5e4b523ac4027c Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Fri, 7 Jun 2019 15:42:52 +0100 Subject: weld OrganizeDialog MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I976edb0b49c8439d1723be4544b10a5375b8e1d3 Reviewed-on: https://gerrit.libreoffice.org/73755 Reviewed-by: Caolán McNamara Tested-by: Caolán McNamara --- cui/source/dialogs/screenshotannotationdlg.cxx | 2 +- cui/source/inc/screenshotannotationdlg.hxx | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'cui') diff --git a/cui/source/dialogs/screenshotannotationdlg.cxx b/cui/source/dialogs/screenshotannotationdlg.cxx index 1536c19d4cfa..2ed79d7a221f 100644 --- a/cui/source/dialogs/screenshotannotationdlg.cxx +++ b/cui/source/dialogs/screenshotannotationdlg.cxx @@ -638,7 +638,7 @@ IMPL_LINK(ScreenshotAnnotationDlg_Impl, pictureFrameListener, VclWindowEvent&, r ScreenshotAnnotationDlg::ScreenshotAnnotationDlg( vcl::Window* pParent, Dialog& rParentDialog) -: SfxModalDialog(pParent, "ScreenshotAnnotationDialog", "cui/ui/screenshotannotationdialog.ui") +: ModalDialog(pParent, "ScreenshotAnnotationDialog", "cui/ui/screenshotannotationdialog.ui") { m_pImpl.reset(new ScreenshotAnnotationDlg_Impl(*this, rParentDialog)); } diff --git a/cui/source/inc/screenshotannotationdlg.hxx b/cui/source/inc/screenshotannotationdlg.hxx index eaae2586bcb3..ac9e0edc564f 100644 --- a/cui/source/inc/screenshotannotationdlg.hxx +++ b/cui/source/inc/screenshotannotationdlg.hxx @@ -19,12 +19,12 @@ #ifndef INCLUDED_CUI_SOURCE_INC_SCREENSHANNDLG_HXX #define INCLUDED_CUI_SOURCE_INC_SCREENSHANNDLG_HXX -#include +#include #include class ScreenshotAnnotationDlg_Impl; -class ScreenshotAnnotationDlg : public SfxModalDialog +class ScreenshotAnnotationDlg : public ModalDialog { private: std::unique_ptr< ScreenshotAnnotationDlg_Impl > m_pImpl; -- cgit