Kaydet (Commit) 5b8b72cb authored tarafından Noel Grandin's avatar Noel Grandin

fix missing "else" in transliterateBullet

ever since

    commit f1830339
    Date:   Tue Apr 8 15:07:08 2003 +0000
    INTEGRATION: CWS calc06 (1.2.44); FILE MERGED

not it will make much difference to the logic

found by experimental loplugin:indentation

Change-Id: I2d724ababa1664a87f2822ed8b59f3e3cd50e5e4
Reviewed-on: https://gerrit.libreoffice.org/63287
Tested-by: Jenkins
Reviewed-by: 's avatarNoel Grandin <noel.grandin@collabora.co.uk>
üst 7eb71f84
...@@ -84,7 +84,7 @@ transliteration_Numeric::transliterateBullet( const OUString& inStr, sal_Int32 s ...@@ -84,7 +84,7 @@ transliteration_Numeric::transliterateBullet( const OUString& inStr, sal_Int32 s
if (useOffset) if (useOffset)
offset[j] = startPos; offset[j] = startPos;
out[j++] = NUMBER_ZERO; out[j++] = NUMBER_ZERO;
} if (number > tableSize && !recycleSymbol) { } else if (number > tableSize && !recycleSymbol) {
for (sal_Int32 k = startPos; k < i; k++) { for (sal_Int32 k = startPos; k < i; k++) {
if (useOffset) if (useOffset)
offset[j] = k; offset[j] = k;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment