diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-02-14 21:04:25 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-02-14 21:04:25 +0000 |
commit | 7200a5b9859092a209b72d6dd41795bab97fe24d (patch) | |
tree | 129152940f91e431b422e0b121f0b50a7f5dc5ac /io/source | |
parent | c019f62a5b66963bad77cb5b7318813532c72ff8 (diff) |
Revert "Remove useless comments"
This reverts commit 4745753ee82b68d6e044214e915712ca4a37f1e1.
Diffstat (limited to 'io/source')
-rw-r--r-- | io/source/stm/odata.cxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/io/source/stm/odata.cxx b/io/source/stm/odata.cxx index 338df98b7e7b..4237977b6b15 100644 --- a/io/source/stm/odata.cxx +++ b/io/source/stm/odata.cxx @@ -808,13 +808,16 @@ void ODataOutputStream::writeUTF(const OUString& Value) writeByte(sal_Int8(0xE0 | ((c >> 12) & 0x0F))); writeByte(sal_Int8(0x80 | ((c >> 6) & 0x3F))); writeByte(sal_Int8(0x80 | ((c >> 0) & 0x3F))); + //written += 2; } else { writeByte(sal_Int8(0xC0 | ((c >> 6) & 0x1F))); writeByte(sal_Int8(0x80 | ((c >> 0) & 0x3F))); + //written += 1; } } + //written += strlen + 2; } // XActiveDataSource |