summaryrefslogtreecommitdiffstats
path: root/examples/dbus
diff options
context:
space:
mode:
authorKai Köhne <kai.koehne@qt.io>2022-07-19 15:06:22 +0200
committerKai Köhne <kai.koehne@qt.io>2022-07-21 11:24:36 +0200
commit65d9593413455e401e44006b07c555f27c293add (patch)
tree133e3f011cbc499358e22b378eaacaab6b4fe26f /examples/dbus
parent5961dbc0e228bcf4c48bf0b2e69161cd9a468dbf (diff)
Examples: Use signals, slots instead of Q_SIGNALS, Q_SLOTS
Pick-to: 6.4 Change-Id: I79a352d1bac11edf2d2b0443d2f1bb202fb4e254 Reviewed-by: Fabian Kosmale <fabian.kosmale@qt.io>
Diffstat (limited to 'examples/dbus')
-rw-r--r--examples/dbus/remotecontrolledcar/car/car.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/dbus/remotecontrolledcar/car/car.h b/examples/dbus/remotecontrolledcar/car/car.h
index 44654f6647..d21125a5cb 100644
--- a/examples/dbus/remotecontrolledcar/car/car.h
+++ b/examples/dbus/remotecontrolledcar/car/car.h
@@ -14,13 +14,13 @@ public:
Car();
QRectF boundingRect() const;
-public Q_SLOTS:
+public slots:
void accelerate();
void decelerate();
void turnLeft();
void turnRight();
-Q_SIGNALS:
+signals:
void crashed();
protected: