From f6f85d98e470ce3fbc5597f74f2f960bb9d40cbb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomi=20Korpip=C3=A4=C3=A4?= Date: Tue, 4 Feb 2014 08:19:22 +0200 Subject: Docs uppercase fixes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Task-number: QTRD-2635 Change-Id: Ia4f709ba063675582da0adb875c191a631ca76fc Change-Id: Ia4f709ba063675582da0adb875c191a631ca76fc Reviewed-by: Tomi Korpipää --- examples/qmlbars/doc/src/qmlbars.qdoc | 4 ++-- examples/qmlscatter/doc/src/qmlscatter.qdoc | 18 +++++++++--------- 2 files changed, 11 insertions(+), 11 deletions(-) (limited to 'examples') diff --git a/examples/qmlbars/doc/src/qmlbars.qdoc b/examples/qmlbars/doc/src/qmlbars.qdoc index 574d36a3..cc344c9c 100644 --- a/examples/qmlbars/doc/src/qmlbars.qdoc +++ b/examples/qmlbars/doc/src/qmlbars.qdoc @@ -34,7 +34,7 @@ \section1 Data The example data is monthly income and expenses of a fictional company over several years. - The data is defined in a list model in \c data.qml like this: + The data is defined in a list model in \c Data.qml like this: \snippet ../examples/qmlbars/qml/qmlbars/Data.qml 0 \dots @@ -62,7 +62,7 @@ \section1 Custom axis labels One interesting tidbit about axes is that we redefine the category labels for column axis in - \c axes.qml. This is done because the data contains abbreviated month names, which we don't want + \c Axes.qml. This is done because the data contains abbreviated month names, which we don't want to use for our column labels: \snippet ../examples/qmlbars/qml/qmlbars/Axes.qml 0 diff --git a/examples/qmlscatter/doc/src/qmlscatter.qdoc b/examples/qmlscatter/doc/src/qmlscatter.qdoc index 0903b875..fe86d740 100644 --- a/examples/qmlscatter/doc/src/qmlscatter.qdoc +++ b/examples/qmlscatter/doc/src/qmlscatter.qdoc @@ -63,16 +63,16 @@ We won't look into that any closer, as we'll change nothing in the generated \c qtquick2applicationviewer files. - Next we'll create new qml files for data (\c data.qml) and a QtQuick.Controls button - we want to modify a bit (\c newbutton.qml), and add them to the resource file, in addition to + Next we'll create new qml files for data (\c Data.qml) and a QtQuick.Controls button + we want to modify a bit (\c NewButton.qml), and add them to the resource file, in addition to main.qml: \code - - qml/qmlscatter/main.qml - qml/qmlscatter/data.qml - qml/qmlscatter/newbutton.qml + + qml/qmlscatter/Data.qml + qml/qmlscatter/main.qml + qml/qmlscatter/NewButton.qml \endcode @@ -89,7 +89,7 @@ \snippet ../examples/qmlscatter/qml/qmlscatter/main.qml 0 The last \c import just imports all the qml files in the same directory as our \c {main.qml}, - because that's where \c newbutton.qml and \c data.qml are. + because that's where \c NewButton.qml and \c Data.qml are. Then we create our main \c Item and call it \c mainView: @@ -134,7 +134,7 @@ The \c seriesData item contains the data models for all three series we use in this example. - This is the component that holds our data in \c {data.qml}. It has an \c Item as the main + This is the component that holds our data in \c {Data.qml}. It has an \c Item as the main component. In the main component we'll add the data itself in a \c ListModel and name it @@ -151,7 +151,7 @@ \snippet ../examples/qmlscatter/qml/qmlscatter/Data.qml 1 - Now we can use the data from \c data.qml with \c scatterGraph in \c {main.qml}. First we'll add + Now we can use the data from \c Data.qml with \c scatterGraph in \c {main.qml}. First we'll add a Scatter3DSeries and call it \c {scatterSeries}: \snippet ../examples/qmlscatter/qml/qmlscatter/main.qml 5 -- cgit v1.2.3