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/CStatement.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/CStatement.hxx')
-rw-r--r-- | connectivity/source/inc/component/CStatement.hxx | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/connectivity/source/inc/component/CStatement.hxx b/connectivity/source/inc/component/CStatement.hxx index 10346e7c8559..70b8937250bf 100644 --- a/connectivity/source/inc/component/CStatement.hxx +++ b/connectivity/source/inc/component/CStatement.hxx @@ -22,17 +22,17 @@ #include <file/FStatement.hxx> namespace connectivity::component +{ + class OConnection; + /// Statement implementation for Writer tables and Calc sheets. + class OOO_DLLPUBLIC_FILE OComponentStatement : public file::OStatement { - class OConnection; - /// Statement implementation for Writer tables and Calc sheets. - class OOO_DLLPUBLIC_FILE OComponentStatement : public file::OStatement - { - protected: - virtual rtl::Reference<file::OResultSet> createResultSet() override; - public: - OComponentStatement( file::OConnection* _pConnection) : file::OStatement( _pConnection){} - DECLARE_SERVICE_INFO(); - }; + protected: + virtual rtl::Reference<file::OResultSet> createResultSet() override; + public: + OComponentStatement( file::OConnection* _pConnection) : file::OStatement( _pConnection){} + DECLARE_SERVICE_INFO(); + }; } |