From c6bf755eff1f74d024a8687b52a9cadf88a27576 Mon Sep 17 00:00:00 2001 From: Thorsten Behrens Date: Fri, 14 Sep 2018 16:58:10 +0200 Subject: Fix build Followup to b6310c1e403b80e2c6b87f2cfc1ab9132ecd90e0 Change-Id: I83b52168a6a05f9bcc05e10bc75b748010295368 --- sw/source/uibase/docvw/edtwin.cxx | 6 +++--- 1 file 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(GetFrameWeld(), "modules/swriter/ui/inforeadonlydialog.ui", "InfoReadonlyDialog")); - weld::DialogController::runAsync(xInfo, [](int) {}); - eKeyState = SwKeyState::End; + ScopedVclPtrInstance(this, "InfoReadonlyDialog", + "modules/swriter/ui/inforeadonlydialog.ui")->Execute(); + eKeyState = KS_End; } else if( m_rView.KeyInput( aKeyEvent ) ) { -- cgit