summaryrefslogtreecommitdiffstats
path: root/src/declarative/util
diff options
context:
space:
mode:
authorMichael Brasser <michael.brasser@nokia.com>2009-07-02 02:58:07 (GMT)
committerMichael Brasser <michael.brasser@nokia.com>2009-07-02 02:58:07 (GMT)
commitc9525d561fa05f0914546315fc33d8942b80742a (patch)
tree4d052ab04f3f45ba838bd9c7b466411f41c4dd13 /src/declarative/util
parent36e237d5dc4bb0728b63f26d9af07fe9c1b1601f (diff)
downloadQt-c9525d561fa05f0914546315fc33d8942b80742a.zip
Qt-c9525d561fa05f0914546315fc33d8942b80742a.tar.gz
Qt-c9525d561fa05f0914546315fc33d8942b80742a.tar.bz2
Make performance logging classes private.
Diffstat (limited to 'src/declarative/util')
-rw-r--r--src/declarative/util/qfxperf.cpp2
-rw-r--r--src/declarative/util/qfxperf_p.h (renamed from src/declarative/util/qfxperf.h)13
-rw-r--r--src/declarative/util/qfxview.cpp4
-rw-r--r--src/declarative/util/qmlscript.cpp2
-rw-r--r--src/declarative/util/qperformancelog.cpp2
-rw-r--r--src/declarative/util/qperformancelog_p.h (renamed from src/declarative/util/qperformancelog.h)0
-rw-r--r--src/declarative/util/util.pri4
7 files changed, 19 insertions, 8 deletions
diff --git a/src/declarative/util/qfxperf.cpp b/src/declarative/util/qfxperf.cpp
index 9ac9e8d..db56b37 100644
--- a/src/declarative/util/qfxperf.cpp
+++ b/src/declarative/util/qfxperf.cpp
@@ -39,7 +39,7 @@
**
****************************************************************************/
-#include "qfxperf.h"
+#include "private/qfxperf_p.h"
QT_BEGIN_NAMESPACE
diff --git a/src/declarative/util/qfxperf.h b/src/declarative/util/qfxperf_p.h
index 0bc0cc9..a1e38b7 100644
--- a/src/declarative/util/qfxperf.h
+++ b/src/declarative/util/qfxperf_p.h
@@ -41,7 +41,18 @@
#ifndef QFXPERF_H
#define QFXPERF_H
-#include "qperformancelog.h"
+//
+// W A R N I N G
+// -------------
+//
+// This file is not part of the Qt API. It exists purely as an
+// implementation detail. This header file may change from version to
+// version without notice, or even be removed.
+//
+// We mean it.
+//
+
+#include "private/qperformancelog_p.h"
QT_BEGIN_HEADER
diff --git a/src/declarative/util/qfxview.cpp b/src/declarative/util/qfxview.cpp
index 0855224..0a3afda 100644
--- a/src/declarative/util/qfxview.cpp
+++ b/src/declarative/util/qfxview.cpp
@@ -54,8 +54,8 @@
#include "qmlbindablevalue.h"
#include "qml.h"
#include "qfxitem.h"
-#include "qperformancelog.h"
-#include "qfxperf.h"
+#include "private/qperformancelog_p.h"
+#include "private/qfxperf_p.h"
#include "qfxview.h"
#include <QtDeclarative/qmlengine.h>
diff --git a/src/declarative/util/qmlscript.cpp b/src/declarative/util/qmlscript.cpp
index ab095b1..07cc1d5 100644
--- a/src/declarative/util/qmlscript.cpp
+++ b/src/declarative/util/qmlscript.cpp
@@ -55,7 +55,7 @@
#include <QNetworkReply>
#include <QNetworkRequest>
#include <QtDeclarative/qmlinfo.h>
-#include <qfxperf.h>
+#include <private/qfxperf_p.h>
QT_BEGIN_NAMESPACE
diff --git a/src/declarative/util/qperformancelog.cpp b/src/declarative/util/qperformancelog.cpp
index 932e4b3..8e11997 100644
--- a/src/declarative/util/qperformancelog.cpp
+++ b/src/declarative/util/qperformancelog.cpp
@@ -39,7 +39,7 @@
**
****************************************************************************/
-#include "qperformancelog.h"
+#include "qperformancelog_p.h"
#include <QHash>
#include <QDebug>
diff --git a/src/declarative/util/qperformancelog.h b/src/declarative/util/qperformancelog_p.h
index 6655a8d..6655a8d 100644
--- a/src/declarative/util/qperformancelog.h
+++ b/src/declarative/util/qperformancelog_p.h
diff --git a/src/declarative/util/util.pri b/src/declarative/util/util.pri
index 543e2d2..157c2d9 100644
--- a/src/declarative/util/util.pri
+++ b/src/declarative/util/util.pri
@@ -21,9 +21,9 @@ SOURCES += \
HEADERS += \
util/qfxview.h \
- util/qfxperf.h \
+ util/qfxperf_p.h \
util/qfxglobal.h \
- util/qperformancelog.h \
+ util/qperformancelog_p.h \
util/qmlconnection.h \
util/qmlpackage.h \
util/qmlscript.h \