Skip to content

Commit fb476fd

Browse files
committed
Fix documentation of control classes
There was an error in several of the control documentation headers that had org.controls.asteroid instead of org.asteroid.controls. This only affected the documentation and not how the controls actually work, which is why it hadn't been discovered until now. Signed-off-by: Ed Beroset <beroset@ieee.org>
1 parent f3e3fb0 commit fb476fd

File tree

14 files changed

+14
-14
lines changed

14 files changed

+14
-14
lines changed

src/controls/qml/CircularSpinner.qml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ import org.asteroid.controls 1.0
3131
3232
\qml
3333
import QtQuick 2.9
34-
import org.controls.asteroid 1.0
34+
import org.asteroid.controls 1.0
3535
3636
CircularSpinner {
3737
id: rating

src/controls/qml/Dims.qml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ pragma Singleton
4141
4242
\qml
4343
import QtQuick 2.0
44-
import org.controls.asteroid 1.0
44+
import org.asteroid.controls 1.0
4545
4646
Rectangle {
4747
width: Dims.w(80) // 80 % of screen width

src/controls/qml/IconButton.qml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import org.asteroid.controls 1.0
2121

2222
/*!
2323
\qmltype IconButton
24-
\inqmlmodule org.controls.asteroid 1.0
24+
\inqmlmodule org.asteroid.controls 1.0
2525
2626
\brief Provides a virtual button with settable icon.
2727

src/controls/qml/IntSelector.qml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ import org.asteroid.controls 1.0
4040
4141
\qml
4242
import QtQuick 2.0
43-
import org.controls.asteroid 1.0
43+
import org.asteroid.controls 1.0
4444
4545
Item {
4646
IntSelector {

src/controls/qml/Label.qml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import org.asteroid.controls 1.0
2020

2121
/*!
2222
\qmltype Label
23-
\inqmlmodule org.controls.asteroid 1.0
23+
\inqmlmodule org.asteroid.controls 1.0
2424
2525
\brief Provides a way to get a text label sized for AsteroidOS.
2626

src/controls/qml/LabeledActionButton.qml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ import org.asteroid.controls 1.0
3535
3636
\qml
3737
import QtQuick 2.0
38-
import org.controls.asteroid 1.0
38+
import org.asteroid.controls 1.0
3939
4040
Item {
4141
LabeledActionButton {

src/controls/qml/LabeledSwitch.qml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import org.asteroid.controls 1.0
2323

2424
/*!
2525
\qmltype LabeledSwitch
26-
\inqmlmodule org.controls.asteroid 1.0
26+
\inqmlmodule org.asteroid.controls 1.0
2727
2828
\brief This combines \l Label and \l Switch in a convenient package.
2929

src/controls/qml/LayerStack.qml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ import QtQuick 2.9
3939
4040
\qml
4141
import QtQuick 2.0
42-
import org.controls.asteroid 1.0
42+
import org.asteroid.controls 1.0
4343
4444
Item {
4545
Component {

src/controls/qml/Marquee.qml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ import org.asteroid.controls 1.0
3333
3434
\qml
3535
import QtQuick 2.0
36-
import org.controls.asteroid 1.0
36+
import org.asteroid.controls 1.0
3737
3838
Item {
3939
Marquee {

src/controls/qml/PageDot.qml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ import QtQuick 2.9
3636
3737
\qml
3838
import QtQuick 2.0
39-
import org.controls.asteroid 1.0
39+
import org.asteroid.controls 1.0
4040
4141
Item {
4242
IntSelector {

0 commit comments

Comments
 (0)