summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorBea Lam <bea.lam@nokia.com>2010-07-26 23:59:59 (GMT)
committerToby Tomkins <toby.tomkins@nokia.com>2010-07-29 07:14:53 (GMT)
commit9d50c8da311500b0e083134b965a968e220722a2 (patch)
tree02a05f7519d0cca6d54c5e80255048365083a309 /examples
parentece2f52e7a2b9cc9d54d96aa73cc87385205d0f3 (diff)
downloadQt-9d50c8da311500b0e083134b965a968e220722a2.zip
Qt-9d50c8da311500b0e083134b965a968e220722a2.tar.gz
Qt-9d50c8da311500b0e083134b965a968e220722a2.tar.bz2
various doc fixes
(cherry picked from commit 9ea7bb34e4b41e1263acb8a175f61566046f9bf6)
Diffstat (limited to 'examples')
-rw-r--r--examples/declarative/tutorials/extending/chapter6-plugins/chartsplugin.cpp2
-rw-r--r--examples/declarative/tutorials/extending/chapter6-plugins/chartsplugin.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/examples/declarative/tutorials/extending/chapter6-plugins/chartsplugin.cpp b/examples/declarative/tutorials/extending/chapter6-plugins/chartsplugin.cpp
index 5aa2a4b..c4d8b61 100644
--- a/examples/declarative/tutorials/extending/chapter6-plugins/chartsplugin.cpp
+++ b/examples/declarative/tutorials/extending/chapter6-plugins/chartsplugin.cpp
@@ -41,7 +41,7 @@
//![0]
#include "piechart.h"
#include "pieslice.h"
-#include <QtDeclarative/qdeclarative.h>
+#include <qdeclarative.h>
void ChartsPlugin::registerTypes(const char *uri)
{
diff --git a/examples/declarative/tutorials/extending/chapter6-plugins/chartsplugin.h b/examples/declarative/tutorials/extending/chapter6-plugins/chartsplugin.h
index 797d1e7..c055e8b 100644
--- a/examples/declarative/tutorials/extending/chapter6-plugins/chartsplugin.h
+++ b/examples/declarative/tutorials/extending/chapter6-plugins/chartsplugin.h
@@ -41,7 +41,7 @@
#define CHARTSPLUGIN_H
//![0]
-#include <QtDeclarative/QDeclarativeExtensionPlugin>
+#include <QDeclarativeExtensionPlugin>
class ChartsPlugin : public QDeclarativeExtensionPlugin
{