From 1862fc5a32fd0523a56d24f2f90df3d9f54ba967 Mon Sep 17 00:00:00 2001 From: J-P Nurmi Date: Fri, 2 Oct 2015 23:03:58 +0200 Subject: Rename CalendarView to MonthGrid Let's reserve CalendarView for a bit higher level control that combines MonthGrid, DayOfWeekRow and WeekNumberColumn, and provides built-in navigation. CalendarView would use the not-so-extensible CalendarModel internally, so we could get that out of the public API as well... Change-Id: I43126ed4c87f54a5b24129b9d60c969f5bd58642 Reviewed-by: J-P Nurmi --- tests/auto/accessibility/tst_accessibility.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/auto/accessibility/tst_accessibility.cpp') diff --git a/tests/auto/accessibility/tst_accessibility.cpp b/tests/auto/accessibility/tst_accessibility.cpp index 450fb88a..857cefd2 100644 --- a/tests/auto/accessibility/tst_accessibility.cpp +++ b/tests/auto/accessibility/tst_accessibility.cpp @@ -95,8 +95,8 @@ void tst_accessibility::a11y_data() // SwipeView // Tumbler - QTest::newRow("CalendarView") << "calendarview" << 0x0 << "CalendarView"; //QAccessible::NoRole QTest::newRow("DayOfWeekRow") << "dayofweekrow" << 0x0 << "DayOfWeekRow"; //QAccessible::NoRole + QTest::newRow("MonthGrid") << "monthgrid" << 0x0 << "MonthGrid"; //QAccessible::NoRole QTest::newRow("WeekNumberColumn") << "weeknumbercolumn" << 0x0 << "WeekNumberColumn"; //QAccessible::NoRole } @@ -111,8 +111,8 @@ void tst_accessibility::a11y() #ifdef QT_NO_ACCESSIBILITY if (name == QLatin1Literal("textarea") || name == QLatin1Literal("textfield") - || name == QLatin1Literal("calendarview") || name == QLatin1Literal("dayofweekrow") + || name == QLatin1Literal("monthgrid") || name == QLatin1Literal("weeknumbercolumn")) fn += QLatin1Literal("-2"); #endif -- cgit v1.2.3