dbaccess/source/ui/misc/TokenWriter.cxx |    2 --
 1 file changed, 2 deletions(-)

New commits:
commit 5b3c7ad096193ede848c2ad216d48160e266adbd
Author:     Stephan Bergmann <sberg...@redhat.com>
AuthorDate: Mon Mar 28 17:00:29 2022 +0200
Commit:     Stephan Bergmann <sberg...@redhat.com>
CommitDate: Mon Mar 28 20:40:31 2022 +0200

    -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 <sberg...@redhat.com>

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())

Reply via email to