diff options
author | Philipp Hofer <philipp.hofer@protonmail.com> | 2020-11-12 13:19:58 +0100 |
---|---|---|
committer | Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de> | 2020-11-16 11:42:31 +0100 |
commit | 69397a13d9458174ea3d0160cb65d77ac83c205c (patch) | |
tree | 5511df93af26e29d91db5ce7934d76b6a1be55fe /svx/source/table | |
parent | 81a11c6f1c2caec8c177cb4e061631561a4d102e (diff) |
tdf#123936 Formatting files in module svx with clang-format
Change-Id: I482a00c9f65fd08be03f101c0e18f044c9323137
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/105716
Tested-by: Jenkins
Reviewed-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
Diffstat (limited to 'svx/source/table')
-rw-r--r-- | svx/source/table/tablerows.hxx | 20 |
1 files changed, 9 insertions, 11 deletions
diff --git a/svx/source/table/tablerows.hxx b/svx/source/table/tablerows.hxx index 154cbeb87dab..3b25d3d9e5f2 100644 --- a/svx/source/table/tablerows.hxx +++ b/svx/source/table/tablerows.hxx @@ -25,13 +25,12 @@ #include <celltypes.hxx> - -namespace sdr::table { - -class TableRows : public ::cppu::WeakAggImplHelper1< css::table::XTableRows > +namespace sdr::table +{ +class TableRows : public ::cppu::WeakAggImplHelper1<css::table::XTableRows> { public: - explicit TableRows( const TableModelRef& xTableModel ); + explicit TableRows(const TableModelRef& xTableModel); virtual ~TableRows() override; void dispose(); @@ -39,21 +38,20 @@ public: void throwIfDisposed() const; // XTableRows - virtual void SAL_CALL insertByIndex( sal_Int32 nIndex, sal_Int32 nCount ) override; - virtual void SAL_CALL removeByIndex( sal_Int32 nIndex, sal_Int32 nCount ) override; + virtual void SAL_CALL insertByIndex(sal_Int32 nIndex, sal_Int32 nCount) override; + virtual void SAL_CALL removeByIndex(sal_Int32 nIndex, sal_Int32 nCount) override; // XIndexAccess - virtual sal_Int32 SAL_CALL getCount( ) override; - virtual css::uno::Any SAL_CALL getByIndex( sal_Int32 Index ) override; + virtual sal_Int32 SAL_CALL getCount() override; + virtual css::uno::Any SAL_CALL getByIndex(sal_Int32 Index) override; // Methods virtual css::uno::Type SAL_CALL getElementType() override; virtual sal_Bool SAL_CALL hasElements() override; private: - TableModelRef mxTableModel; + TableModelRef mxTableModel; }; - } #endif |