summaryrefslogtreecommitdiffstats
path: root/cui/source
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2019-06-07 15:42:52 +0100
committerCaolán McNamara <caolanm@redhat.com>2019-06-13 09:57:02 +0200
commit415dfaed9fe782e02e393ff6b0e79026f3ce0449 (patch)
treeb136d84477bbd6112803e336eccd59424a2c6310 /cui/source
parentmenu_item...with_label -> menu_item...with_mnemonic (diff)
downloadcore-415dfaed9fe782e02e393ff6b0e79026f3ce0449.tar.gz
core-415dfaed9fe782e02e393ff6b0e79026f3ce0449.zip
weld OrganizeDialog
Change-Id: I976edb0b49c8439d1723be4544b10a5375b8e1d3 Reviewed-on: https://gerrit.libreoffice.org/73900 Tested-by: Jenkins 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.cxx2
-rw-r--r--cui/source/inc/screenshotannotationdlg.hxx4
2 files changed, 3 insertions, 3 deletions
diff --git a/cui/source/dialogs/screenshotannotationdlg.cxx b/cui/source/dialogs/screenshotannotationdlg.cxx
index e567944d226c..de5ad381799c 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;