From 5e543b2856bc9f0f1abedd72efc87bd009ad2fb7 Mon Sep 17 00:00:00 2001 From: Friedemann Kleint Date: Thu, 5 May 2011 09:14:41 +0200 Subject: [PATCH] Compile Windows. --- src/plugins/qmlprofiler/localqmlprofilerrunner.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugins/qmlprofiler/localqmlprofilerrunner.cpp b/src/plugins/qmlprofiler/localqmlprofilerrunner.cpp index 898c9cd3152..1790a9ee28c 100644 --- a/src/plugins/qmlprofiler/localqmlprofilerrunner.cpp +++ b/src/plugins/qmlprofiler/localqmlprofilerrunner.cpp @@ -69,7 +69,7 @@ void LocalQmlProfilerRunner::start() void LocalQmlProfilerRunner::spontaneousStop(int exitCode) { if (QmlProfilerPlugin::debugOutput) - qWarning() << "QmlProfiler: Application exited (exit code" << exitCode << ")."; + qWarning("QmlProfiler: Application exited (exit code %d).", exitCode); disconnect(&m_launcher, SIGNAL(processExited(int)), this, SLOT(spontaneousStop(int))); @@ -79,7 +79,7 @@ void LocalQmlProfilerRunner::spontaneousStop(int exitCode) void LocalQmlProfilerRunner::stop() { if (QmlProfilerPlugin::debugOutput) - qWarning() << "QmlProfiler: Stopping application ..."; + qWarning("QmlProfiler: Stopping application ..."); if (m_launcher.isRunning()) { m_launcher.stop();