summaryrefslogtreecommitdiff
path: root/connectivity/source/inc/writer/WTable.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'connectivity/source/inc/writer/WTable.hxx')
-rw-r--r--connectivity/source/inc/writer/WTable.hxx15
1 files changed, 4 insertions, 11 deletions
diff --git a/connectivity/source/inc/writer/WTable.hxx b/connectivity/source/inc/writer/WTable.hxx
index b82ef86647b2..46ee5412e0a6 100644
--- a/connectivity/source/inc/writer/WTable.hxx
+++ b/connectivity/source/inc/writer/WTable.hxx
@@ -17,8 +17,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#ifndef INCLUDED_CONNECTIVITY_SOURCE_INC_WRITER_WTABLE_HXX
-#define INCLUDED_CONNECTIVITY_SOURCE_INC_WRITER_WTABLE_HXX
+#pragma once
#include <component/CTable.hxx>
@@ -41,9 +40,9 @@ class OWriterTable : public OWriterTable_BASE
private:
css::uno::Reference<css::text::XTextTable> m_xTable;
OWriterConnection* m_pWriterConnection;
- sal_Int32 m_nStartCol;
- sal_Int32 m_nDataCols;
- bool m_bHasHeaders;
+ sal_Int32 m_nStartCol = 0;
+ sal_Int32 m_nDataCols = 0;
+ bool m_bHasHeaders = false;
void fillColumns();
@@ -55,15 +54,9 @@ public:
void SAL_CALL disposing() override;
- // css::lang::XUnoTunnel
- sal_Int64 SAL_CALL getSomething(const css::uno::Sequence<sal_Int8>& rId) override;
- static css::uno::Sequence<sal_Int8> getUnoTunnelId();
-
void construct() override;
};
} // namespace connectivity::writer
-#endif // INCLUDED_CONNECTIVITY_SOURCE_INC_WRITER_WTABLE_HXX
-
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */