##// END OF EJS Templates
Fix spelling errors
Jani Honkonen -
r1940:c7b5c0b5fd0b
parent child
Show More
@@ -80,7 +80,7 QDeclarativeListProperty<QObject> DeclarativeTableModel::modelChildren()
80 void DeclarativeTableModel::appendModelChild(QDeclarativeListProperty<QObject> *list,
80 void DeclarativeTableModel::appendModelChild(QDeclarativeListProperty<QObject> *list,
81 QObject *child)
81 QObject *child)
82 {
82 {
83 // childs are added in componentComplete instead
83 // children are added in componentComplete instead
84 Q_UNUSED(list)
84 Q_UNUSED(list)
85 Q_UNUSED(child)
85 Q_UNUSED(child)
86 }
86 }
@@ -20,7 +20,7
20 The internal for loop creates the slices with a random value and label same as the value.
20 The internal for loop creates the slices with a random value and label same as the value.
21 Next the label of the slice is set to be visible and its color is set to white.
21 Next the label of the slice is set to be visible and its color is set to white.
22 To make the example more interesting the hovered signal of the slice is connected to widget's slot which inner workings are explained later.
22 To make the example more interesting the hovered signal of the slice is connected to widget's slot which inner workings are explained later.
23 Finally the slice is added to the donut. The donut's size is adjusted to achive the nesting of the donuts.
23 Finally the slice is added to the donut. The donut's size is adjusted to achieve the nesting of the donuts.
24 Then the donut is added to the widget's list of donuts and to the chart.
24 Then the donut is added to the widget's list of donuts and to the chart.
25
25
26 \snippet ../demos/nesteddonuts/widget.cpp 3
26 \snippet ../demos/nesteddonuts/widget.cpp 3
@@ -25,7 +25,7
25
25
26 \snippet ../examples/stackedbarchartdrilldown/main.cpp 1
26 \snippet ../examples/stackedbarchartdrilldown/main.cpp 1
27
27
28 We define categories, from wich the drilldown series will be constructed.
28 We define categories, from which the drilldown series will be constructed.
29
29
30 \snippet ../examples/stackedbarchartdrilldown/main.cpp 2
30 \snippet ../examples/stackedbarchartdrilldown/main.cpp 2
31
31
@@ -91,7 +91,7 void DeclarativeLineSeries::appendDeclarativeChildren(QDeclarativeListProperty<Q
91 {
91 {
92 Q_UNUSED(list)
92 Q_UNUSED(list)
93 Q_UNUSED(element)
93 Q_UNUSED(element)
94 // Empty implementation, childs are parsed in componentComplete
94 // Empty implementation, children are parsed in componentComplete
95 }
95 }
96
96
97 #include "moc_declarativelineseries.cpp"
97 #include "moc_declarativelineseries.cpp"
@@ -61,7 +61,7 void DeclarativeScatterSeries::appendDeclarativeChildren(QDeclarativeListPropert
61 {
61 {
62 Q_UNUSED(list)
62 Q_UNUSED(list)
63 Q_UNUSED(element)
63 Q_UNUSED(element)
64 // Empty implementation, childs are parsed in componentComplete
64 // Empty implementation, children are parsed in componentComplete
65 }
65 }
66
66
67 #include "moc_declarativescatterseries.cpp"
67 #include "moc_declarativescatterseries.cpp"
@@ -91,7 +91,7 void DeclarativeSplineSeries::appendDeclarativeChildren(QDeclarativeListProperty
91 {
91 {
92 Q_UNUSED(list)
92 Q_UNUSED(list)
93 Q_UNUSED(element)
93 Q_UNUSED(element)
94 // Empty implementation, childs are parsed in componentComplete
94 // Empty implementation, children are parsed in componentComplete
95 }
95 }
96
96
97 #include "moc_declarativesplineseries.cpp"
97 #include "moc_declarativesplineseries.cpp"
@@ -494,7 +494,7 void tst_qpieseries::clickedSignal()
494 m_view->show();
494 m_view->show();
495 QTest::qWaitForWindowShown(m_view);
495 QTest::qWaitForWindowShown(m_view);
496
496
497 // if you devide the chart in four equal tiles these
497 // if you divide the chart in four equal tiles these
498 // are the center points of those tiles
498 // are the center points of those tiles
499 QPoint p1(90.25, 90);
499 QPoint p1(90.25, 90);
500 QPoint p2(150, 90);
500 QPoint p2(150, 90);
General Comments 0
You need to be logged in to leave comments. Login now