From 57a5c0f04526fc05907334311db5727e665bdde2 Mon Sep 17 00:00:00 2001 From: Julien Nabet Date: Sun, 9 Feb 2020 11:12:46 +0100 Subject: tdf#126578: call ensureConnection to be able to call "Create as View" See https://bugs.documentfoundation.org/show_bug.cgi?id=126578#c8 Change-Id: I9eadb704214b1aad9573bcd89e3fd61213627a8c Reviewed-on: https://gerrit.libreoffice.org/c/core/+/88329 Tested-by: Julien Nabet Reviewed-by: Julien Nabet --- dbaccess/source/ui/app/AppController.cxx | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'dbaccess/source/ui/app/AppController.cxx') diff --git a/dbaccess/source/ui/app/AppController.cxx b/dbaccess/source/ui/app/AppController.cxx index aceaec2b36f6..087f7e500f0f 100644 --- a/dbaccess/source/ui/app/AppController.cxx +++ b/dbaccess/source/ui/app/AppController.cxx @@ -1657,6 +1657,11 @@ bool OApplicationController::onContainerSelect(ElementType _eType) return false; } } + else if ( _eType == E_QUERY ) + { + // tdf#126578: retrieve connection to be able to call "Create as View" + ensureConnection(); + } Reference< XLayoutManager > xLayoutManager = getLayoutManager( getFrame() ); if ( xLayoutManager.is() ) { -- cgit