diff options
author | David Boddie <david.boddie@nokia.com> | 2011-03-16 17:03:23 (GMT) |
---|---|---|
committer | David Boddie <david.boddie@nokia.com> | 2011-03-17 17:34:21 (GMT) |
commit | 15394b8a8a8efa27e7deef43dc9ba6067bb743a1 (patch) | |
tree | 5ac0690afc28291900d6f1e838f7c1b01357385e /doc/src | |
parent | 12c0099819bfa83f9560d75a812cada8a0388f0f (diff) | |
download | Qt-15394b8a8a8efa27e7deef43dc9ba6067bb743a1.zip Qt-15394b8a8a8efa27e7deef43dc9ba6067bb743a1.tar.gz Qt-15394b8a8a8efa27e7deef43dc9ba6067bb743a1.tar.bz2 |
Doc: Squashed commit of Roland Wolf's threading tutorial.
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/getting-started/tutorials.qdoc | 2 | ||||
-rw-r--r-- | doc/src/howtos/scalabilityintro.qdoc | 10 |
2 files changed, 6 insertions, 6 deletions
diff --git a/doc/src/getting-started/tutorials.qdoc b/doc/src/getting-started/tutorials.qdoc index 9fc6699..bf86e08 100644 --- a/doc/src/getting-started/tutorials.qdoc +++ b/doc/src/getting-started/tutorials.qdoc @@ -61,7 +61,7 @@ \o{2,1} \l{A Quick Start to Qt Designer}{\bold{Qt Designer}} \o{2,1} \l{Qt Linguist Manual: Programmers#Tutorials}{\bold {Qt Linguist}} \row - \o \image designer-examples.png + \o \image designer-examples.png QtDesigner \o A quick guide through \QD showing the basic steps to create a form with this interactive tool. diff --git a/doc/src/howtos/scalabilityintro.qdoc b/doc/src/howtos/scalabilityintro.qdoc index 5b4e58b..b1d9c19 100644 --- a/doc/src/howtos/scalabilityintro.qdoc +++ b/doc/src/howtos/scalabilityintro.qdoc @@ -198,11 +198,11 @@ \list \o \l{Item::anchors.top}{anchors} within an Item \o \l{Row} / \l{Column} / \l{Grid} - \o simple javascript expressions such as width: Math.round(parent.width / 3.0). + \o simple JavaScript expressions such as width: Math.round(parent.width / 3.0). \endlist These basic building blocks, along with the powerful evaluation - capabilities of javascript expressions within every QML binding, + capabilities of JavaScript expressions within every QML binding, are designed to allow the majority of the layout structure definition to be defined in a Device Profile independent way. @@ -214,14 +214,14 @@ container. By combining the features of the layout managers with simple - javascript expressions, a richer variety of designs can be + JavaScript expressions, a richer variety of designs can be expressed, without having to resort to additional layout measurement parameters or measurement values. Here are some things not to do with layouts: \list - \o Don't define complex javascript functions that are regularly + \o Don't define complex JavaScript functions that are regularly evaluated. This will cause poor performance, particularly during animated transitions. \o Don't define all of your layouts using x, y, width and @@ -275,7 +275,7 @@ by the top level orientation change), in the case of anchor layouts, AnchorAnimation elements can be used to control the transitions. In some cases, you can also use a NumberAnimation on - e.g. the width of an item. Remember to avoid complex javascript + e.g. the width of an item. Remember to avoid complex JavaScript calculations during each frame of animation. Using simple anchor definitions and anchor animations can help with this in the majority of cases. |