diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2025-03-06 14:22:29 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2025-03-07 16:14:01 +0100 |
commit | f4ba2e1c5a1ee9243a9d5df80d1a7f216653c960 (patch) | |
tree | 80a74c5116d63e195061fc11d741db5161be8171 /connectivity/source/inc/component/CTable.hxx | |
parent | b1b6f4f706492c0889025786f6b3736782dd9194 (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/component/CTable.hxx')
-rw-r--r-- | connectivity/source/inc/component/CTable.hxx | 48 |
1 files changed, 24 insertions, 24 deletions
diff --git a/connectivity/source/inc/component/CTable.hxx b/connectivity/source/inc/component/CTable.hxx index 3ace6f922ae0..5204dc9ed134 100644 --- a/connectivity/source/inc/component/CTable.hxx +++ b/connectivity/source/inc/component/CTable.hxx @@ -31,35 +31,35 @@ namespace com::sun::star::util { namespace connectivity::component - { - typedef file::OFileTable OComponentTable_BASE; +{ + typedef file::OFileTable OComponentTable_BASE; - /// Shared Table base class for Writer tables and Calc sheets. - class OOO_DLLPUBLIC_FILE OComponentTable : public OComponentTable_BASE - { - protected: - sal_Int32 m_nDataRows; + /// Shared Table base class for Writer tables and Calc sheets. + class OOO_DLLPUBLIC_FILE OComponentTable : public OComponentTable_BASE + { + protected: + sal_Int32 m_nDataRows; - virtual void FileClose() override; - public: - OComponentTable( sdbcx::OCollection* _pTables,file::OConnection* _pConnection, - const OUString& Name, - const OUString& Type, - const OUString& Description, - const OUString& SchemaName, - const OUString& CatalogName - ); + virtual void FileClose() override; + public: + OComponentTable( sdbcx::OCollection* _pTables,file::OConnection* _pConnection, + const OUString& Name, + const OUString& Type, + const OUString& Description, + const OUString& SchemaName, + const OUString& CatalogName + ); - virtual void refreshColumns() override; - virtual void refreshIndexes() override; + virtual void refreshColumns() override; + virtual void refreshIndexes() override; - virtual sal_Int32 getCurrentLastPos() const override; - virtual bool seekRow(IResultSetHelper::Movement eCursorPosition, sal_Int32 nOffset, sal_Int32& nCurPos) override; + virtual sal_Int32 getCurrentLastPos() const override; + virtual bool seekRow(IResultSetHelper::Movement eCursorPosition, sal_Int32 nOffset, sal_Int32& nCurPos) override; - virtual css::uno::Any SAL_CALL queryInterface( const css::uno::Type & rType ) override; - //XTypeProvider - virtual css::uno::Sequence< css::uno::Type > SAL_CALL getTypes( ) override; - }; + virtual css::uno::Any SAL_CALL queryInterface( const css::uno::Type & rType ) override; + //XTypeProvider + virtual css::uno::Sequence< css::uno::Type > SAL_CALL getTypes( ) override; + }; } |