X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Funicodedialog.cpp;h=7576c3b2c9d7258c0c05722c79984f8c7096764b;hb=19c1cbda4a138112dc38ed4d49788b717cbfa705;hp=51d462d6244595fa1e900c2b586190d0b6fd26de;hpb=cd8f3c665824119972f43aa1460ed3b63317337b;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 += ' '; } }