aboutsummaryrefslogtreecommitdiffstats
path: root/tools/qmlprofiler/profileclient.h
diff options
context:
space:
mode:
Diffstat (limited to 'tools/qmlprofiler/profileclient.h')
-rw-r--r--tools/qmlprofiler/profileclient.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/qmlprofiler/profileclient.h b/tools/qmlprofiler/profileclient.h
index fd581c59c4..8aa4e67982 100644
--- a/tools/qmlprofiler/profileclient.h
+++ b/tools/qmlprofiler/profileclient.h
@@ -83,13 +83,13 @@ protected:
bool m_enabled;
};
-class DeclarativeProfileClient : public ProfileClient
+class QmlProfileClient : public ProfileClient
{
Q_OBJECT
public:
- DeclarativeProfileClient(QQmlDebugConnection *client);
- ~DeclarativeProfileClient();
+ QmlProfileClient(QQmlDebugConnection *client);
+ ~QmlProfileClient();
public slots:
void clearData();
@@ -107,7 +107,7 @@ protected:
virtual void messageReceived(const QByteArray &);
private:
- class DeclarativeProfileClientPrivate *d;
+ class QmlProfileClientPrivate *d;
};
class V8ProfileClient : public ProfileClient