diff options
Diffstat (limited to 'dbaccess/source/core/inc/querycomposer.hxx')
-rw-r--r-- | dbaccess/source/core/inc/querycomposer.hxx | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/dbaccess/source/core/inc/querycomposer.hxx b/dbaccess/source/core/inc/querycomposer.hxx index 1e5ef2ab07ec..c5d764d98cf8 100644 --- a/dbaccess/source/core/inc/querycomposer.hxx +++ b/dbaccess/source/core/inc/querycomposer.hxx @@ -16,8 +16,7 @@ * except in compliance with the License. You may obtain a copy of * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#ifndef INCLUDED_DBACCESS_SOURCE_CORE_INC_QUERYCOMPOSER_HXX -#define INCLUDED_DBACCESS_SOURCE_CORE_INC_QUERYCOMPOSER_HXX +#pragma once #include <com/sun/star/sdb/XSQLQueryComposer.hpp> #include <com/sun/star/sdb/XParametersSupplier.hpp> @@ -63,8 +62,8 @@ namespace dbaccess // css::uno::XInterface virtual css::uno::Any SAL_CALL queryInterface( const css::uno::Type & rType ) override; - virtual void SAL_CALL acquire() throw() override; - virtual void SAL_CALL release() throw() override; + virtual void SAL_CALL acquire() noexcept override; + virtual void SAL_CALL release() noexcept override; // XServiceInfo virtual OUString SAL_CALL getImplementationName( ) override; virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName ) override; @@ -88,6 +87,5 @@ namespace dbaccess virtual css::uno::Reference< css::container::XIndexAccess > SAL_CALL getParameters( ) override; }; } -#endif // INCLUDED_DBACCESS_SOURCE_CORE_INC_QUERYCOMPOSER_HXX /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |