summaryrefslogtreecommitdiff
path: root/connectivity/source/inc/ado/AColumn.hxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-10-14 16:57:58 +0200
committerStephan Bergmann <sbergman@redhat.com>2016-10-16 14:19:24 +0000
commitb9ed8dd02ac1435e6a02afbbbe789d29d965364a (patch)
tree0806abdc3fcbeba2fd2bb6d4cd69e65b08144457 /connectivity/source/inc/ado/AColumn.hxx
parent2b326037931e5e98f543cdaa003606fc4fb9b43b (diff)
clang-cl loplugin: connectivity
Change-Id: I025cf2ad63f08bb58d54983982d7a116fac0ffea Reviewed-on: https://gerrit.libreoffice.org/29874 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'connectivity/source/inc/ado/AColumn.hxx')
-rw-r--r--connectivity/source/inc/ado/AColumn.hxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/connectivity/source/inc/ado/AColumn.hxx b/connectivity/source/inc/ado/AColumn.hxx
index 4eb7242222ae..969eed384fdf 100644
--- a/connectivity/source/inc/ado/AColumn.hxx
+++ b/connectivity/source/inc/ado/AColumn.hxx
@@ -34,7 +34,7 @@ namespace connectivity
WpADOColumn m_aColumn;
OConnection* m_pConnection;
OUString m_ReferencedColumn;
- sal_Bool m_IsAscending;
+ bool m_IsAscending;
void fillPropertyValues();
protected:
@@ -42,16 +42,16 @@ namespace connectivity
sal_Int32 nHandle,
const css::uno::Any& rValue
)
- throw (css::uno::Exception);
+ throw (css::uno::Exception) override;
public:
- OAdoColumn(sal_Bool _bCase,OConnection* _pConnection,_ADOColumn* _pColumn);
- OAdoColumn(sal_Bool _bCase,OConnection* _pConnection);
+ OAdoColumn(bool _bCase,OConnection* _pConnection,_ADOColumn* _pColumn);
+ OAdoColumn(bool _bCase,OConnection* _pConnection);
// ODescriptor
- virtual void construct();
- virtual void SAL_CALL acquire() throw();
- virtual void SAL_CALL release() throw();
+ virtual void construct() override;
+ virtual void SAL_CALL acquire() throw() override;
+ virtual void SAL_CALL release() throw() override;
// css::lang::XUnoTunnel
- virtual sal_Int64 SAL_CALL getSomething( const css::uno::Sequence< sal_Int8 >& aIdentifier ) throw(css::uno::RuntimeException);
+ virtual sal_Int64 SAL_CALL getSomething( const css::uno::Sequence< sal_Int8 >& aIdentifier ) throw(css::uno::RuntimeException) override;
static css::uno::Sequence< sal_Int8 > getUnoTunnelImplementationId();
WpADOColumn getColumnImpl() const;