aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlvaluetypes/data
diff options
context:
space:
mode:
authorMitch Curtis <mitch.curtis@theqtcompany.com>2015-08-25 15:43:56 +0200
committerMitch Curtis <mitch.curtis@theqtcompany.com>2015-09-02 13:35:03 +0000
commitd1b20513798ed441afddb87fd4e7facce78349e1 (patch)
tree48591126eb3355f95509c3df5835f8a5b5b6bd2e /tests/auto/qml/qqmlvaluetypes/data
parent70592075464dad3f8fef173422a30a06eaed3d80 (diff)
Don't consider QLocale a value type.
This fixes a regression where all of the properties of Qt.inputMethod.locale were undefined. Change-Id: Id33890a78296709baad6aeda96d74ca8cb39c61d Task-number: QTBUG-47916 Reviewed-by: Mitch Curtis <mitch.curtis@theqtcompany.com> Reviewed-by: Simon Hausmann <simon.hausmann@theqtcompany.com>
Diffstat (limited to 'tests/auto/qml/qqmlvaluetypes/data')
-rw-r--r--tests/auto/qml/qqmlvaluetypes/data/locale_read.qml22
1 files changed, 22 insertions, 0 deletions
diff --git a/tests/auto/qml/qqmlvaluetypes/data/locale_read.qml b/tests/auto/qml/qqmlvaluetypes/data/locale_read.qml
new file mode 100644
index 0000000000..5ae6b41259
--- /dev/null
+++ b/tests/auto/qml/qqmlvaluetypes/data/locale_read.qml
@@ -0,0 +1,22 @@
+import QtQuick 2.0
+
+Item {
+ property string amText: Qt.inputMethod.locale.amText
+ property string decimalPoint: Qt.inputMethod.locale.decimalPoint
+ property string exponential: Qt.inputMethod.locale.exponential
+ property int firstDayOfWeek: Qt.inputMethod.locale.firstDayOfWeek
+ property string groupSeparator: Qt.inputMethod.locale.groupSeparator
+ property int measurementSystem: Qt.inputMethod.locale.measurementSystem
+ property string name: Qt.inputMethod.locale.name
+ property string nativeCountryName: Qt.inputMethod.locale.nativeCountryName
+ property string nativeLanguageName: Qt.inputMethod.locale.nativeLanguageName
+ property string negativeSign: Qt.inputMethod.locale.negativeSign
+ property string percent: Qt.inputMethod.locale.percent
+ property string pmText: Qt.inputMethod.locale.pmText
+ property string positiveSign: Qt.inputMethod.locale.positiveSign
+ property int textDirection: Qt.inputMethod.locale.textDirection
+ property var uiLanguages: Qt.inputMethod.locale.uiLanguages
+ property var weekDays: Qt.inputMethod.locale.weekDays
+ property string zeroDigit: Qt.inputMethod.locale.zeroDigit
+}
+