summaryrefslogtreecommitdiffstats
path: root/src/tools
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@qt.io>2019-05-03 15:13:01 +0200
committerFabian Kosmale <fabian.kosmale@qt.io>2020-04-02 15:21:46 +0000
commit64b1af3fa0e35f673db50273564ac9eab4e5e09c (patch)
tree022eacccbfa7e27def26382026f3133fb2c9ffe9 /src/tools
parent1de427bd4ec9d496061e733b4a849c4927d8888e (diff)
Warn that the EDITABLE flag for property declarations is deprecated
Additionally mark QMetaProperty::isEditable as deprecated. Change-Id: I1abe4c6f2d30c2f96380f9e5942be431dbfed38f Reviewed-by: Lars Knoll <lars.knoll@qt.io>
Diffstat (limited to 'src/tools')
-rw-r--r--src/tools/moc/moc.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/tools/moc/moc.cpp b/src/tools/moc/moc.cpp
index c175d1d86d..9dbc22dc2c 100644
--- a/src/tools/moc/moc.cpp
+++ b/src/tools/moc/moc.cpp
@@ -1296,9 +1296,12 @@ void Moc::createPropertyDef(PropertyDef &propDef)
propDef.designable = v + v2;
checkIsFunction(propDef.designable, "DESIGNABLE");
break;
- case 'E': if (l != "EDITABLE") error(2);
+ case 'E': if (l != "EDITABLE") error(2); {
+ const QByteArray msg = "EDITABLE flag for property declaration is deprecated.";
+ warning(msg.constData());
propDef.editable = v + v2;
checkIsFunction(propDef.editable, "EDITABLE");
+ }
break;
case 'N': if (l != "NOTIFY") error(2);
propDef.notify = v;