summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarek Rosa <marek.rosa@digia.com>2012-09-07 16:25:14 +0300
committerMarek Rosa <marek.rosa@digia.com>2012-09-07 16:25:14 +0300
commit205e74ad98a10b24edc9ef220da28dbd282d1240 (patch)
tree9f9126b90a69b53b334ed63f16324d99689727e7
parentb15e1abf669a6ef4eec69e2a4cd637a0ddbcb09c (diff)
Chartviewer demo removed. Fixed a typo in docs
-rw-r--r--demos/demos.pro3
-rw-r--r--doc/src/examples-datetimeaxis.qdoc2
2 files changed, 2 insertions, 3 deletions
diff --git a/demos/demos.pro b/demos/demos.pro
index 4c663072..2710febb 100644
--- a/demos/demos.pro
+++ b/demos/demos.pro
@@ -17,8 +17,7 @@ SUBDIRS += piechartcustomization \
contains(QT_CONFIG, opengl) {
SUBDIRS += chartthemes \
- qmloscilloscope \
- chartviewer
+ qmloscilloscope
} else {
message("OpenGL not available. Some demos are disabled")
}
diff --git a/doc/src/examples-datetimeaxis.qdoc b/doc/src/examples-datetimeaxis.qdoc
index 283a5c72..ae579829 100644
--- a/doc/src/examples-datetimeaxis.qdoc
+++ b/doc/src/examples-datetimeaxis.qdoc
@@ -22,7 +22,7 @@
Becasue we use QLineSeries calling createDefaultAxes will create QValueAxis both as X and Y axis. To use QDateTimeAxis we need to set it manually to the chart.
First the instance of QDateTimeAxis is created, then the number of ticks that are to be shown is set. The number of sun spots is provided as an average for the month therfore we don't need the axis labels to contain the information about the time and the day. This is achived by setting a custom label format.
- Please refer to QDateTime::toString() method documntation to learn about the avaiable format options.
+ Please refer to QDateTime::toString() method documentation to learn about the avaiable format options.
\snippet ../examples/datetimeaxis/main.cpp 4