aboutsummaryrefslogtreecommitdiffstats
path: root/src/tools/qmlprofilertool/qmlprofilerapplication.cpp
diff options
context:
space:
mode:
authorRobert Loehning <[email protected]>2012-03-06 19:27:49 +0100
committerFriedemann Kleint <[email protected]>2012-03-07 09:18:15 +0100
commit9988c471fe4d1cbd8f069edfd7794b166c29556a (patch)
treef9a432876eb3e1544f83de3f596c1ee823391277 /src/tools/qmlprofilertool/qmlprofilerapplication.cpp
parentab64c1aef355deb4031d78ba57aefbf8b5f064d0 (diff)
Replaced one-char-strings
Change-Id: I0bf982b508a237e5b1e6ba3279cb589bae1b1c1d Reviewed-by: Oswald Buddenhagen <[email protected]> Reviewed-by: Friedemann Kleint <[email protected]>
Diffstat (limited to 'src/tools/qmlprofilertool/qmlprofilerapplication.cpp')
-rw-r--r--src/tools/qmlprofilertool/qmlprofilerapplication.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/qmlprofilertool/qmlprofilerapplication.cpp b/src/tools/qmlprofilertool/qmlprofilerapplication.cpp
index c60592981b8..e15542c220c 100644
--- a/src/tools/qmlprofilertool/qmlprofilerapplication.cpp
+++ b/src/tools/qmlprofilertool/qmlprofilerapplication.cpp
@@ -193,7 +193,7 @@ void QmlProfilerApplication::printCommands()
QString QmlProfilerApplication::traceFileName() const
{
- QString fileName = m_tracePrefix + "_" +
+ QString fileName = m_tracePrefix + QLatin1Char('_') +
QDateTime::currentDateTime().toString(QLatin1String("yyMMdd_hhmmss")) + TraceFileExtension;
if (QFileInfo(fileName).exists()) {
QString baseName;