diff options
author | Caolán McNamara <caolanm@redhat.com> | 2019-06-07 15:42:52 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2019-06-12 21:44:39 +0200 |
commit | ad1cbee2ffc7b3c10cad6fd69f5e4b523ac4027c (patch) | |
tree | deb0368f573238325c4e30bf1b932e6b3e0c05a2 /cui/source | |
parent | 0e27158c4f6a6a7676a77afb6b37dd30b3f6d100 (diff) |
weld OrganizeDialog
Change-Id: I976edb0b49c8439d1723be4544b10a5375b8e1d3
Reviewed-on: https://gerrit.libreoffice.org/73755
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'cui/source')
-rw-r--r-- | cui/source/dialogs/screenshotannotationdlg.cxx | 2 | ||||
-rw-r--r-- | cui/source/inc/screenshotannotationdlg.hxx | 4 |
2 files changed, 3 insertions, 3 deletions
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 <sfx2/basedlgs.hxx> +#include <vcl/dialog.hxx> #include <memory> class ScreenshotAnnotationDlg_Impl; -class ScreenshotAnnotationDlg : public SfxModalDialog +class ScreenshotAnnotationDlg : public ModalDialog { private: std::unique_ptr< ScreenshotAnnotationDlg_Impl > m_pImpl; |