diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2022-03-28 17:00:29 +0200 |
---|---|---|
committer | Andras Timar <andras.timar@collabora.com> | 2023-07-07 11:27:13 +0200 |
commit | c4a6cf6084746a38c8e050500a3dd61789c079ba (patch) | |
tree | ad2b5e262e10cb4305ac81ffa088bbaea4df00ea | |
parent | c443fbfea38b454a9dcf848f04b2fe425b719d6a (diff) |
-Werror,-Wunused-but-set-variable
...since 0b6d0ac41afc72a0043e6ccdc6cdfd8648a5efdc "m_pRowMarker is unused"
Change-Id: I68d23a11e4be814a23e8ede87723b9aba208b774
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/132228
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
-rw-r--r-- | dbaccess/source/ui/misc/TokenWriter.cxx | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/dbaccess/source/ui/misc/TokenWriter.cxx b/dbaccess/source/ui/misc/TokenWriter.cxx index 7b2ff6d8f6f7..08e8fcc76c0d 100644 --- a/dbaccess/source/ui/misc/TokenWriter.cxx +++ b/dbaccess/source/ui/misc/TokenWriter.cxx @@ -791,14 +791,12 @@ void OHTMLImportExport::WriteTables() // 2. and now the data Reference< XRowSet > xRowSet(m_xRow,UNO_QUERY); - sal_Int32 kk=0; m_xResultSet->beforeFirst(); // set back before the first row while(m_xResultSet->next()) { IncIndent(1); HTMLOutFuncs::Out_AsciiTag(*m_pStream, OOO_STRING_SVTOOLS_HTML_tablerow).WriteCharPtr(SAL_NEWLINE_STRING).WriteCharPtr(GetIndentStr()); - ++kk; for(sal_Int32 i=1;i<=aNames.getLength();++i) { if(i == aNames.getLength()) |