]> git.sesse.net Git - kdenlive/blobdiff - src/unicodedialog.cpp
const'ify when necessary
[kdenlive] / src / unicodedialog.cpp
index 51d462d6244595fa1e900c2b586190d0b6fd26de..7576c3b2c9d7258c0c05722c79984f8c7096764b 100644 (file)
@@ -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 += ' ';
         }
     }