aboutsummaryrefslogtreecommitdiffstats
path: root/tools/qmlprofiler/qmlprofilerapplication.h
diff options
context:
space:
mode:
authorChristiaan Janssen <christiaan.janssen@nokia.com>2012-03-08 16:50:14 +0100
committerQt by Nokia <qt-info@nokia.com>2012-03-13 09:39:03 +0100
commit1f76525c5f701f612b56a49715cda6597e3727b1 (patch)
tree591e056491283d6c82f9bb74583047fe29ccd1ab /tools/qmlprofiler/qmlprofilerapplication.h
parentd541fdcbe68ea6fab78db1009d8291c7f73cc1e5 (diff)
QmlProfiler: updated standalone app
Using a stripped-down version of the profiler data structure. Change-Id: I93a0b12462edea0ca8a1d0db42aa892aa2afc919 Reviewed-by: Kai Koehne <kai.koehne@nokia.com>
Diffstat (limited to 'tools/qmlprofiler/qmlprofilerapplication.h')
-rw-r--r--tools/qmlprofiler/qmlprofilerapplication.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/tools/qmlprofiler/qmlprofilerapplication.h b/tools/qmlprofiler/qmlprofilerapplication.h
index 3937db7e5f..c7148880ad 100644
--- a/tools/qmlprofiler/qmlprofilerapplication.h
+++ b/tools/qmlprofiler/qmlprofilerapplication.h
@@ -46,7 +46,8 @@
#include <QtCore/QProcess>
#include <QtCore/QTimer>
-#include "profileclient.h"
+#include "qmlprofilerclient.h"
+#include "qmlprofilerdata.h"
class QmlProfilerApplication : public QCoreApplication
{
@@ -104,9 +105,9 @@ private:
bool m_quitAfterSave;
QQmlDebugConnection m_connection;
- QmlProfileClient m_qmlProfilerClient;
- V8ProfileClient m_v8profilerClient;
- ProfileData m_profileData;
+ QmlProfilerClient m_qmlProfilerClient;
+ V8ProfilerClient m_v8profilerClient;
+ QmlProfilerData m_profilerData;
QTimer m_connectTimer;
uint m_connectionAttempts;