aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorJ-P Nurmi <jpnurmi@digia.com>2013-09-04 17:37:26 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-09-05 10:46:57 +0200
commit8f9c238b8f722801c853692ce7b953ac5993b8ad (patch)
treefbfeb16e2be13ef1c6e540d00d66149451519dbf /tests
parent687eba0f2705477031c1dfc9954d1d75aa9180af (diff)
Unify QML type names
Currently few of the QML types have a Win-prefix while others don't: - WinDwmFeatures, WinTaskbarButton, WinTaskbarProgress - JumpList, JumpListItem, JumpListCategory, ThumbnailToolBar, ThumbnailToolButton In QML it is easy to import stuff into namespaces to avoid potential conflicts, or to do it just for clarity if one prefers: import QtWinExtras 1.0 as Win Win.JumpList { ... } => Remove the hardcoded Win-prefix that is unnecessary for QML types. Change-Id: I699498640e5d7c32695193147323b929cf5dae86 Reviewed-by: Ivan Vizir <define-true-false@yandex.com> Reviewed-by: Laszlo Papp <lpapp@kde.org> Reviewed-by: Alan Alpert <aalpert@blackberry.com> Reviewed-by: Friedemann Kleint <Friedemann.Kleint@digia.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/manual/taskbar/main.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/manual/taskbar/main.qml b/tests/manual/taskbar/main.qml
index 97cadeb..539b827 100644
--- a/tests/manual/taskbar/main.qml
+++ b/tests/manual/taskbar/main.qml
@@ -46,14 +46,14 @@ import QtQuick.Controls 1.0
ApplicationWindow {
id: window
- title: "WinTaskbarButton"
+ title: "TaskbarButton"
width: column.implicitWidth + 240
height: column.implicitHeight + 160
minimumWidth: column.implicitWidth + 40
minimumHeight: column.implicitHeight + 40
- WinTaskbarButton {
+ TaskbarButton {
id: taskbar
progress.visible: progressBox.checked