summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2020-02-09 11:12:46 +0100
committerJulien Nabet <serval2412@yahoo.fr>2020-02-09 19:47:37 +0100
commit57a5c0f04526fc05907334311db5727e665bdde2 (patch)
treeb7f953a825f10642edea54378cccda235ef974bd
parente9cc1df70a08812591d836312e672b7749c1bdcf (diff)
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 <serval2412@yahoo.fr> Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
-rw-r--r--dbaccess/source/ui/app/AppController.cxx5
1 files changed, 5 insertions, 0 deletions
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() )
{