aboutsummaryrefslogtreecommitdiffstats
path: root/tools/qml/conf.h
diff options
context:
space:
mode:
authorYuhang Zhao <2546789017@qq.com>2022-12-07 14:27:01 +0800
committerYuhang Zhao <2546789017@qq.com>2022-12-09 11:55:10 +0800
commit781714aefb8bb8df0794cff7fc79c971c0fcf17a (patch)
tree3602ddf016a8582af1f475edaa95dfc7327aea46 /tools/qml/conf.h
parentf756c201c56454f4162de05a3c6bc264e8b7a758 (diff)
Remove Qt keywords from all headers
It's good practice to do so. Change-Id: I72435ff99aaee942c1d3b488ec5dedd7e82d1047 Reviewed-by: Ulf Hermann <ulf.hermann@qt.io>
Diffstat (limited to 'tools/qml/conf.h')
-rw-r--r--tools/qml/conf.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/qml/conf.h b/tools/qml/conf.h
index d3f311af03..d105359037 100644
--- a/tools/qml/conf.h
+++ b/tools/qml/conf.h
@@ -27,16 +27,16 @@ public:
if (a==m_container)
return;
m_container = a;
- emit containerChanged();
+ Q_EMIT containerChanged();
}
void setItemType(const QString &a) {
if (a==m_itemType)
return;
m_itemType = a;
- emit itemTypeChanged();
+ Q_EMIT itemTypeChanged();
}
-signals:
+Q_SIGNALS:
void containerChanged();
void itemTypeChanged();