sw/source/uibase/docvw/edtwin.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-)
New commits: commit c6bf755eff1f74d024a8687b52a9cadf88a27576 Author: Thorsten Behrens <[email protected]> AuthorDate: Fri Sep 14 16:58:10 2018 +0200 Commit: Thorsten Behrens <[email protected]> CommitDate: Fri Sep 14 16:58:10 2018 +0200 Fix build Followup to b6310c1e403b80e2c6b87f2cfc1ab9132ecd90e0 Change-Id: I83b52168a6a05f9bcc05e10bc75b748010295368 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 ) ) { _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
