aboutsummaryrefslogtreecommitdiffstats
path: root/tools/qmleasing/segmentproperties.cpp
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@theqtcompany.com>2015-10-13 12:26:45 +0200
committerFriedemann Kleint <Friedemann.Kleint@theqtcompany.com>2015-10-13 13:40:44 +0000
commit16154fba86798bd6bbee90eb79a9f3b26cae2fad (patch)
tree7b06b87f90730bdcc99dbb01bc9953ed599adcee /tools/qmleasing/segmentproperties.cpp
parentc2472e9105713784493f3df620047cab5e6cecc8 (diff)
Tools: Fix single-character string literals.
Use character literals where applicable. Change-Id: I55679dcc13c4c79567712c0dfaaabc2b84fee010 Reviewed-by: Ulf Hermann <ulf.hermann@theqtcompany.com>
Diffstat (limited to 'tools/qmleasing/segmentproperties.cpp')
-rw-r--r--tools/qmleasing/segmentproperties.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/qmleasing/segmentproperties.cpp b/tools/qmleasing/segmentproperties.cpp
index cfc10b7f54..cf49b2488c 100644
--- a/tools/qmleasing/segmentproperties.cpp
+++ b/tools/qmleasing/segmentproperties.cpp
@@ -103,7 +103,7 @@ void SegmentProperties::invalidate()
{
m_blockSignals = true;
- m_ui_pane_p.label->setText(QLatin1String("p") + QString::number(m_segment));
+ m_ui_pane_p.label->setText(QLatin1Char('p') + QString::number(m_segment));
m_ui_pane_p.smooth->setChecked(m_smooth);
m_ui_pane_p.smooth->parentWidget()->setEnabled(!m_last);