summaryrefslogtreecommitdiff
path: root/connectivity/source/inc/ado/AIndexes.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2025-03-06 14:22:29 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2025-03-07 16:14:01 +0100
commitf4ba2e1c5a1ee9243a9d5df80d1a7f216653c960 (patch)
tree80a74c5116d63e195061fc11d741db5161be8171 /connectivity/source/inc/ado/AIndexes.hxx
parentb1b6f4f706492c0889025786f6b3736782dd9194 (diff)
trim excessive leading whitespace in connectivity
Change-Id: I5629ca3ac7503c1cab848f65fcd25d15a1e3dcaa Reviewed-on: https://gerrit.libreoffice.org/c/core/+/182580 Reviewed-by: Julien Nabet <serval2412@yahoo.fr> Tested-by: Jenkins Reviewed-by: Lionel Mamane <lionel@mamane.lu>
Diffstat (limited to 'connectivity/source/inc/ado/AIndexes.hxx')
-rw-r--r--connectivity/source/inc/ado/AIndexes.hxx46
1 files changed, 23 insertions, 23 deletions
diff --git a/connectivity/source/inc/ado/AIndexes.hxx b/connectivity/source/inc/ado/AIndexes.hxx
index 85d2c30314f3..525c6052a8c1 100644
--- a/connectivity/source/inc/ado/AIndexes.hxx
+++ b/connectivity/source/inc/ado/AIndexes.hxx
@@ -24,30 +24,30 @@
namespace connectivity::ado
{
- class OConnection;
- class OIndexes : public sdbcx::OCollection
+ class OConnection;
+ class OIndexes : public sdbcx::OCollection
+ {
+ WpADOIndexes m_aCollection;
+ OConnection* m_pConnection;
+ protected:
+ virtual css::uno::Reference< css::beans::XPropertySet > createObject(const OUString& _rName) override;
+ virtual void impl_refresh() override;
+ virtual css::uno::Reference< css::beans::XPropertySet > createDescriptor() override;
+ virtual css::uno::Reference< css::beans::XPropertySet > appendObject( const OUString& _rForName, const css::uno::Reference< css::beans::XPropertySet >& descriptor ) override;
+ virtual void dropObject(sal_Int32 _nPos,const OUString& _sElementName) override;
+ public:
+ OIndexes(::cppu::OWeakObject& _rParent,
+ ::osl::Mutex& _rMutex,
+ const ::std::vector< OUString> &_rVector,
+ const WpADOIndexes& _rCollection,
+ bool _bCase,
+ OConnection* _pConnection)
+ : sdbcx::OCollection(_rParent,_bCase,_rMutex,_rVector)
+ , m_aCollection(_rCollection)
+ , m_pConnection(_pConnection)
{
- WpADOIndexes m_aCollection;
- OConnection* m_pConnection;
- protected:
- virtual css::uno::Reference< css::beans::XPropertySet > createObject(const OUString& _rName) override;
- virtual void impl_refresh() override;
- virtual css::uno::Reference< css::beans::XPropertySet > createDescriptor() override;
- virtual css::uno::Reference< css::beans::XPropertySet > appendObject( const OUString& _rForName, const css::uno::Reference< css::beans::XPropertySet >& descriptor ) override;
- virtual void dropObject(sal_Int32 _nPos,const OUString& _sElementName) override;
- public:
- OIndexes(::cppu::OWeakObject& _rParent,
- ::osl::Mutex& _rMutex,
- const ::std::vector< OUString> &_rVector,
- const WpADOIndexes& _rCollection,
- bool _bCase,
- OConnection* _pConnection)
- : sdbcx::OCollection(_rParent,_bCase,_rMutex,_rVector)
- , m_aCollection(_rCollection)
- , m_pConnection(_pConnection)
- {
- }
- };
+ }
+ };
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */