diff options
author | Lionel Elie Mamane <lionel@mamane.lu> | 2014-06-09 08:31:54 +0200 |
---|---|---|
committer | Lionel Elie Mamane <lionel@mamane.lu> | 2014-06-09 06:41:43 +0000 |
commit | ade17fc916caf7c7bace630eaf83ae16215a2cc2 (patch) | |
tree | d7aa6e5cb20a51164186d19252a99c67b807b840 | |
parent | 336364b46d71e08b441f0cc35b95d88bf1af40ff (diff) |
fdo#79786 implement getFormOperations for data grid (table view)
Change-Id: I704057b25ca11633ba62fbb834bd2e6095f348f3
Reviewed-on: https://gerrit.libreoffice.org/9685
Reviewed-by: Lionel Elie Mamane <lionel@mamane.lu>
Tested-by: Lionel Elie Mamane <lionel@mamane.lu>
-rw-r--r-- | dbaccess/source/ui/browser/brwctrlr.cxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/dbaccess/source/ui/browser/brwctrlr.cxx b/dbaccess/source/ui/browser/brwctrlr.cxx index e7154933ae61..0c6b9963cf57 100644 --- a/dbaccess/source/ui/browser/brwctrlr.cxx +++ b/dbaccess/source/ui/browser/brwctrlr.cxx @@ -43,6 +43,7 @@ #include <com/sun/star/form/XSubmit.hpp> #include <com/sun/star/form/XSubmitListener.hpp> #include <com/sun/star/form/runtime/XFormController.hpp> +#include <com/sun/star/form/runtime/FormOperations.hpp> #include <com/sun/star/sdb/CommandType.hpp> #include <com/sun/star/sdb/ErrorCondition.hpp> #include <com/sun/star/sdb/ParametersRequest.hpp> @@ -93,6 +94,7 @@ using namespace ::com::sun::star::sdbcx; using namespace ::com::sun::star::task; using namespace ::com::sun::star::beans; using namespace ::com::sun::star::frame; +using namespace ::com::sun::star::form::runtime; using namespace ::com::sun::star::form; using namespace ::com::sun::star::util; using namespace ::com::sun::star::lang; @@ -255,8 +257,7 @@ SbaXDataBrowserController::FormControllerImpl::~FormControllerImpl() Reference< runtime::XFormOperations > SAL_CALL SbaXDataBrowserController::FormControllerImpl::getFormOperations() throw (RuntimeException, std::exception) { - SAL_WARN("dbaccess.ui", "SbaXDataBrowserController::FormControllerImpl::getFormOperations: not supported!" ); - return NULL; + return FormOperations::createWithFormController( m_pOwner->m_xContext, this ); } Reference< ::com::sun::star::awt::XControl > SbaXDataBrowserController::FormControllerImpl::getCurrentControl(void) throw( RuntimeException, std::exception ) |