]> git.sesse.net Git - kdenlive/blobdiff - src/scopes/colorscopes/vectorscope.cpp
Use char for single character [krazy 1-44] by Mikko Rapeli
[kdenlive] / src / scopes / colorscopes / vectorscope.cpp
index 55437fff8bd40ad4eb9eced662a5d7cc1a4f88b1..7666133865863522467b75dda0e66ca7c0f5e948 100644 (file)
@@ -506,7 +506,7 @@ void Vectorscope::slotGainChanged(int newval)
 {
     QLocale locale;
     m_gain = 1 + (float)newval/10;
-    ui->lblGain->setText(locale.toString(m_gain, 'f', 1) + "x");
+    ui->lblGain->setText(locale.toString(m_gain, 'f', 1) + 'x');
     forceUpdateScope();
 }