summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeena Miettinen <riitta-leena.miettinen@nokia.com>2011-02-23 16:24:41 +0100
committerLeena Miettinen <riitta-leena.miettinen@nokia.com>2011-02-23 16:24:41 +0100
commit4247519b4a8fc040e3170fd2ca3955477c67c27a (patch)
tree2f309bb41d6f47690b6febf719e1cc43fc963904
parentdb2508a28fb169ff4797a5e0dbeda29914b8fa0a (diff)
downloadqt-creator-4247519b4a8fc040e3170fd2ca3955477c67c27a.tar.gz
Doc: include correct header file
Task-number: QTCREATORBUG-3844 Reviewed-by: Niels Weber
-rw-r--r--doc/examples/batteryindicator/mainwindow.h2
-rw-r--r--doc/qtcreator.qdoc2
2 files changed, 2 insertions, 2 deletions
diff --git a/doc/examples/batteryindicator/mainwindow.h b/doc/examples/batteryindicator/mainwindow.h
index fe219713c2..865d2619d9 100644
--- a/doc/examples/batteryindicator/mainwindow.h
+++ b/doc/examples/batteryindicator/mainwindow.h
@@ -5,7 +5,7 @@
#include <QtGui/QMainWindow>
//! [1]
-#include <QSystemInfo>
+#include <QSystemDeviceInfo>
//! [1]
//! [2]
diff --git a/doc/qtcreator.qdoc b/doc/qtcreator.qdoc
index b768dc19ba..d91df4717d 100644
--- a/doc/qtcreator.qdoc
+++ b/doc/qtcreator.qdoc
@@ -4616,7 +4616,7 @@
\o In the \gui{Projects} view, double-click the \c{mainwindow.h} file
to open it for editing.
- \o Include the System Info header file, as illustrated by the following
+ \o Include the System Device Info header file, as illustrated by the following
code snippet:
\snippet examples/batteryindicator/mainwindow.h 1