From 0f513b1f80a0c176cb3d460943d605f0b6fb0def Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Thu, 26 Nov 2015 11:36:08 +0100 Subject: -Werror,-Woverloaded-virtual Change-Id: I40a88271b32d81f5857dd41b237e2c486c7059a0 --- connectivity/source/inc/ado/APreparedStatement.hxx | 3 +++ 1 file changed, 3 insertions(+) (limited to 'connectivity') diff --git a/connectivity/source/inc/ado/APreparedStatement.hxx b/connectivity/source/inc/ado/APreparedStatement.hxx index 7d0b22d87831..b9f2b45a6bcc 100644 --- a/connectivity/source/inc/ado/APreparedStatement.hxx +++ b/connectivity/source/inc/ado/APreparedStatement.hxx @@ -71,8 +71,11 @@ namespace connectivity // XPreparedStatement virtual ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XResultSet > SAL_CALL executeQuery( ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); + using OStatement_Base::executeQuery; virtual sal_Int32 SAL_CALL executeUpdate( ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); + using OStatement_Base::executeUpdate; virtual sal_Bool SAL_CALL execute( ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); + using OStatement_Base::execute; virtual ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XConnection > SAL_CALL getConnection( ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); // XParameters virtual void SAL_CALL setNull( sal_Int32 parameterIndex, sal_Int32 sqlType ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); -- cgit