X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Funicodedialog.cpp;h=7576c3b2c9d7258c0c05722c79984f8c7096764b;hb=8391434d0cdba5bc4c00afea00eb426d1f8a3e22;hp=51d462d6244595fa1e900c2b586190d0b6fd26de;hpb=e286ff4854296be6f007ee4c484207777fb261b0;p=kdenlive diff --git a/src/unicodedialog.cpp b/src/unicodedialog.cpp index 51d462d6..7576c3b2 100644 --- a/src/unicodedialog.cpp +++ b/src/unicodedialog.cpp @@ -210,7 +210,7 @@ void UnicodeDialog::updateOverviewChars(uint unicode) for (i = 1; i <= 4; i++) { if (unicode > i && !controlCharacter(unicode - i)) { - left = " " + left; + left = ' ' + left; left = QChar(unicode - i) + left; } } @@ -218,7 +218,7 @@ void UnicodeDialog::updateOverviewChars(uint unicode) for (i = 1; i <= 8; i++) { if (unicode + i <= MAX_UNICODE_V1 && !controlCharacter(unicode + i)) { right += QChar(unicode + i); - right += " "; + right += ' '; } }