diff options
author | Noel Grandin <noel@peralex.com> | 2016-07-18 09:03:51 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2016-07-19 05:39:46 +0000 |
commit | 36313d93ac6f88bb4b4e4ed7109db583c7ce9886 (patch) | |
tree | f27ca9d75beb484a6ce93268fc15a0bfd470e3a1 /dbaccess | |
parent | a7b5be118191a4e8a6cd422b5b2438a1ac22f36f (diff) |
improve unnecessaryoverride plugin
to ignore ImplicitCastExpr when calling superclass method
Change-Id: I76a3068446acfee85aa1baeb216e57f63c7099c1
Reviewed-on: https://gerrit.libreoffice.org/27279
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'dbaccess')
-rw-r--r-- | dbaccess/source/filter/xml/xmlExport.cxx | 5 | ||||
-rw-r--r-- | dbaccess/source/filter/xml/xmlExport.hxx | 1 | ||||
-rw-r--r-- | dbaccess/source/ui/inc/querycontroller.hxx | 6 | ||||
-rw-r--r-- | dbaccess/source/ui/querydesign/querycontroller.cxx | 5 |
4 files changed, 0 insertions, 17 deletions
diff --git a/dbaccess/source/filter/xml/xmlExport.cxx b/dbaccess/source/filter/xml/xmlExport.cxx index 61c508da0df4..a17220c2f55a 100644 --- a/dbaccess/source/filter/xml/xmlExport.cxx +++ b/dbaccess/source/filter/xml/xmlExport.cxx @@ -1265,11 +1265,6 @@ void ODBExport::ExportStyles_(bool bUsed) SvXMLExport::ExportStyles_(bUsed); } -sal_uInt32 ODBExport::exportDoc(enum ::xmloff::token::XMLTokenEnum eClass) -{ - return SvXMLExport::exportDoc( eClass ); -} - void ODBExport::GetViewSettings(Sequence<PropertyValue>& aProps) { Reference<XQueryDefinitionsSupplier> xSup(getDataSource(),UNO_QUERY); diff --git a/dbaccess/source/filter/xml/xmlExport.hxx b/dbaccess/source/filter/xml/xmlExport.hxx index 4a9c6a141a09..4a25fcf2da67 100644 --- a/dbaccess/source/filter/xml/xmlExport.hxx +++ b/dbaccess/source/filter/xml/xmlExport.hxx @@ -164,7 +164,6 @@ protected: virtual void ExportContent_() override; virtual void ExportMasterStyles_() override; virtual void ExportFontDecls_() override; - virtual sal_uInt32 exportDoc( enum ::xmloff::token::XMLTokenEnum eClass ) override; virtual SvXMLAutoStylePoolP* CreateAutoStylePool() override; virtual void GetViewSettings(css::uno::Sequence<css::beans::PropertyValue>& aProps) override; diff --git a/dbaccess/source/ui/inc/querycontroller.hxx b/dbaccess/source/ui/inc/querycontroller.hxx index 92a7962ad75f..af1c79c0c946 100644 --- a/dbaccess/source/ui/inc/querycontroller.hxx +++ b/dbaccess/source/ui/inc/querycontroller.hxx @@ -191,12 +191,6 @@ namespace dbaui virtual ::cppu::IPropertyArrayHelper* createArrayHelper( ) const override; // OPropertySetHelper - virtual sal_Bool SAL_CALL convertFastPropertyValue( - css::uno::Any& rConvertedValue, - css::uno::Any& rOldValue, - sal_Int32 nHandle, - const css::uno::Any& rValue - ) throw (css::lang::IllegalArgumentException) override; virtual void SAL_CALL setFastPropertyValue_NoBroadcast( sal_Int32 nHandle, const css::uno::Any& rValue diff --git a/dbaccess/source/ui/querydesign/querycontroller.cxx b/dbaccess/source/ui/querydesign/querycontroller.cxx index 9787efdcb435..66a203b18314 100644 --- a/dbaccess/source/ui/querydesign/querycontroller.cxx +++ b/dbaccess/source/ui/querydesign/querycontroller.cxx @@ -365,11 +365,6 @@ Reference< XPropertySetInfo > SAL_CALL OQueryController::getPropertySetInfo() th return xInfo; } -sal_Bool SAL_CALL OQueryController::convertFastPropertyValue( Any& o_rConvertedValue, Any& o_rOldValue, sal_Int32 i_nHandle, const Any& i_rValue ) throw (IllegalArgumentException) -{ - return OPropertyContainer::convertFastPropertyValue( o_rConvertedValue, o_rOldValue, i_nHandle, i_rValue ); -} - void SAL_CALL OQueryController::setFastPropertyValue_NoBroadcast( sal_Int32 i_nHandle, const Any& i_rValue ) throw ( Exception, std::exception ) { OPropertyContainer::setFastPropertyValue_NoBroadcast( i_nHandle, i_rValue ); |