summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThorsten Behrens <Thorsten.Behrens@CIB.de>2018-09-14 16:58:10 +0200
committerThorsten Behrens <Thorsten.Behrens@CIB.de>2018-09-14 16:58:10 +0200
commitc6bf755eff1f74d024a8687b52a9cadf88a27576 (patch)
tree639871d14bd86a92fd9f1c9ba42d0d28366d6594
parenttdf#119016 Editing a read-only section shall popup a dialog (diff)
downloadcore-private/juergen/Tests.tar.gz
core-private/juergen/Tests.zip
Followup to b6310c1e403b80e2c6b87f2cfc1ab9132ecd90e0 Change-Id: I83b52168a6a05f9bcc05e10bc75b748010295368
-rw-r--r--sw/source/uibase/docvw/edtwin.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/source/uibase/docvw/edtwin.cxx b/sw/source/uibase/docvw/edtwin.cxx
index cd8347f707ef..74226435241b 100644
--- a/sw/source/uibase/docvw/edtwin.cxx
+++ b/sw/source/uibase/docvw/edtwin.cxx
@@ -2323,9 +2323,9 @@ KEYINPUT_CHECKTABLE_INSDEL:
if (rSh.HasReadonlySel() && rKeyCode.GetFunction() == KeyFuncType::PASTE)
{
- auto xInfo(std::make_shared<weld::GenericDialogController>(GetFrameWeld(), "modules/swriter/ui/inforeadonlydialog.ui", "InfoReadonlyDialog"));
- weld::DialogController::runAsync(xInfo, [](int) {});
- eKeyState = SwKeyState::End;
+ ScopedVclPtrInstance<MessageDialog>(this, "InfoReadonlyDialog",
+ "modules/swriter/ui/inforeadonlydialog.ui")->Execute();
+ eKeyState = KS_End;
}
else if( m_rView.KeyInput( aKeyEvent ) )
{