aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorJ-P Nurmi <jpnurmi@digia.com>2013-08-30 15:40:22 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-08-30 16:19:31 +0200
commit3b533df1e46d509aaa0cda36e300b63272feb230 (patch)
tree3f28556cae1744838863325c935fbac8fd2033b2 /tests
parentee7af2e9aaa2041bf51e2ec24157e505020b8bfa (diff)
QWinTaskbarButton::progressBar() -> progress()
The class is called QWinTaskbarProgress -> use the same name for the accessor. That name was also used for the QML grouped property name since it looks really nice. :) Change-Id: I6c46ea4336dd3f420b16a305de47b490f7629adb Reviewed-by: Ivan Vizir <define-true-false@yandex.com> Reviewed-by: Friedemann Kleint <Friedemann.Kleint@digia.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/qwintaskbarbutton/tst_qwintaskbarbutton.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/auto/qwintaskbarbutton/tst_qwintaskbarbutton.cpp b/tests/auto/qwintaskbarbutton/tst_qwintaskbarbutton.cpp
index 1fd3b4b..f6212e8 100644
--- a/tests/auto/qwintaskbarbutton/tst_qwintaskbarbutton.cpp
+++ b/tests/auto/qwintaskbarbutton/tst_qwintaskbarbutton.cpp
@@ -50,7 +50,7 @@ private slots:
void testWindow();
void testOverlayIcon();
void testOverlayIconAccessibilityDescription();
- void testProgressBar();
+ void testProgress();
};
void tst_QWinTaskbarButton::testWindow()
@@ -97,10 +97,10 @@ void tst_QWinTaskbarButton::testOverlayIconAccessibilityDescription()
QVERIFY(btn.overlayIconAccessibilityDescription().isNull());
}
-void tst_QWinTaskbarButton::testProgressBar()
+void tst_QWinTaskbarButton::testProgress()
{
QWinTaskbarButton btn;
- QVERIFY(btn.progressBar());
+ QVERIFY(btn.progress());
}
QTEST_MAIN(tst_QWinTaskbarButton)