aboutsummaryrefslogtreecommitdiffstats
path: root/src/imports/builtins
diff options
context:
space:
mode:
authorUlf Hermann <ulf.hermann@qt.io>2020-10-16 09:31:02 +0200
committerUlf Hermann <ulf.hermann@qt.io>2020-10-16 21:54:51 +0200
commit7c27da55f54525b4f2bcb2ae2087365b2a45622f (patch)
tree6411d8459f28d404ee7e310d81c8f0b8d9d6aab3 /src/imports/builtins
parent0d36866f87c0358eabf8a1fd5054c04a53531e90 (diff)
Fix typoes in builtins.qmltypes
It's isReadonly, not isReadOnly. Change-Id: Ia4c372468447bd4f6c0ad21ba36a228052912220 Reviewed-by: Fabian Kosmale <fabian.kosmale@qt.io>
Diffstat (limited to 'src/imports/builtins')
-rw-r--r--src/imports/builtins/builtins.qmltypes32
1 files changed, 16 insertions, 16 deletions
diff --git a/src/imports/builtins/builtins.qmltypes b/src/imports/builtins/builtins.qmltypes
index f23ed4ea52..9f85718ad2 100644
--- a/src/imports/builtins/builtins.qmltypes
+++ b/src/imports/builtins/builtins.qmltypes
@@ -12,7 +12,7 @@ Module {
// is a singleton, but its constructor can construct NumberPrototype objects...
isSingleton: true
prototype: "NumberPrototype"
- Property{ name:"EPSILON"; type: "NumberPrototype"; isReadOnly: true }
+ Property{ name:"EPSILON"; type: "NumberPrototype"; isReadonly: true }
Method{
name: "isFinite"
type: "bool"
@@ -33,12 +33,12 @@ Module {
type: "bool"
Parameter { name: "number"; type: "NumberPrototype" }
}
- Property{ name:"MAX_SAFE_INTEGER" ; type: "NumberPrototype"; isReadOnly: true; isReadOnly: true }
- Property{ name:"MAX_VALUE" ; type: "NumberPrototype"; isReadOnly: true }
- Property{ name:"MIN_SAFE_INTEGER" ; type: "NumberPrototype"; isReadOnly: true }
- Property{ name:"MIN_VALUE" ; type: "NumberPrototype"; isReadOnly: true }
- Property{ name:"NaN" ; type: "NumberPrototype"; isReadOnly: true }
- Property{ name:"NEGATIVE_INFINITY" ; type: "NumberPrototype"; isReadOnly: true }
+ Property{ name:"MAX_SAFE_INTEGER" ; type: "NumberPrototype"; isReadonly: true; isReadonly: true }
+ Property{ name:"MAX_VALUE" ; type: "NumberPrototype"; isReadonly: true }
+ Property{ name:"MIN_SAFE_INTEGER" ; type: "NumberPrototype"; isReadonly: true }
+ Property{ name:"MIN_VALUE" ; type: "NumberPrototype"; isReadonly: true }
+ Property{ name:"NaN" ; type: "NumberPrototype"; isReadonly: true }
+ Property{ name:"NEGATIVE_INFINITY" ; type: "NumberPrototype"; isReadonly: true }
Method{
name: "parseFloat"
type: "real"
@@ -50,7 +50,7 @@ Module {
Parameter { name: "string"; type: "string" }
Parameter { name: "radix"; type: "int" }
}
- Property{ name:"POSITIVE_INFINITY" ; type: "NumberPrototype"; isReadOnly: true }
+ Property{ name:"POSITIVE_INFINITY" ; type: "NumberPrototype"; isReadonly: true }
}
Component {
name: "NumberPrototype"
@@ -90,14 +90,14 @@ Module {
isSingleton: true
exports: ["QML/Math 1.0"]
exportMetaObjectRevisions: [256]
- Property{ name:"E" ; type: "real"; isReadOnly: true }
- Property{ name:"LN10" ; type: "real"; isReadOnly: true }
- Property{ name:"LN2" ; type: "real"; isReadOnly: true }
- Property{ name:"LOG10E" ; type: "real"; isReadOnly: true }
- Property{ name:"LOG2E" ; type: "real"; isReadOnly: true }
- Property{ name:"PI" ; type: "real"; isReadOnly: true }
- Property{ name:"SQRT1_2" ; type: "real"; isReadOnly: true }
- Property{ name:"SQRT2" ; type: "real"; isReadOnly: true }
+ Property{ name:"E" ; type: "real"; isReadonly: true }
+ Property{ name:"LN10" ; type: "real"; isReadonly: true }
+ Property{ name:"LN2" ; type: "real"; isReadonly: true }
+ Property{ name:"LOG10E" ; type: "real"; isReadonly: true }
+ Property{ name:"LOG2E" ; type: "real"; isReadonly: true }
+ Property{ name:"PI" ; type: "real"; isReadonly: true }
+ Property{ name:"SQRT1_2" ; type: "real"; isReadonly: true }
+ Property{ name:"SQRT2" ; type: "real"; isReadonly: true }
Method{
name: "abs"
type: "real"