summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorKevin Funk <kevin.funk.ford@kdab.com>2014-12-11 11:34:42 +0100
committerKevin Funk <kevin.funk@kdab.com>2014-12-12 11:13:35 +0100
commitaa22394d280a249c8b235615f5d2ad86f174b2ed (patch)
treed69a1795f74340b2e65b39284da04efc116d662b /examples
parent834342212e1dd05b46e7df269868017b7d99f620 (diff)
repc: Fix examples and improve warnings
Change-Id: Ibcb197d4561bd032c10635a9892414989db90a80 Reviewed-by: Brett Stottlemyer <bstottle@ford.com> Reviewed-by: Nicolas Arnaud-Cormos <nicolas@kdab.com>
Diffstat (limited to 'examples')
-rw-r--r--examples/RemoteObjects/CppClient/TimeModel.rep2
-rw-r--r--examples/RemoteObjects/TimeModel.rep2
2 files changed, 2 insertions, 2 deletions
diff --git a/examples/RemoteObjects/CppClient/TimeModel.rep b/examples/RemoteObjects/CppClient/TimeModel.rep
index fa7e612..cbfaf24 100644
--- a/examples/RemoteObjects/CppClient/TimeModel.rep
+++ b/examples/RemoteObjects/CppClient/TimeModel.rep
@@ -8,5 +8,5 @@ class MinuteTimer
SIGNAL(timeChanged());
SIGNAL(timeChanged2(QTime t));
SIGNAL(sendCustom(PresetInfo info));
- SLOT(SetTimeZone(int zn));
+ SLOT(void SetTimeZone(int zn));
};
diff --git a/examples/RemoteObjects/TimeModel.rep b/examples/RemoteObjects/TimeModel.rep
index 893007a..0c9ca6a 100644
--- a/examples/RemoteObjects/TimeModel.rep
+++ b/examples/RemoteObjects/TimeModel.rep
@@ -10,5 +10,5 @@ class MinuteTimer
SIGNAL(timeChanged2(const QTime &t));
SIGNAL(sendCustom(PresetInfo info));
SIGNAL(foo(QMap<QString, QString> foo));
- SLOT(SetTimeZone(const int &));
+ SLOT(void SetTimeZone(const int &));
};