aboutsummaryrefslogtreecommitdiffstats
path: root/examples/qml/referenceexamples/signal/birthdayparty.h
diff options
context:
space:
mode:
Diffstat (limited to 'examples/qml/referenceexamples/signal/birthdayparty.h')
-rw-r--r--examples/qml/referenceexamples/signal/birthdayparty.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/qml/referenceexamples/signal/birthdayparty.h b/examples/qml/referenceexamples/signal/birthdayparty.h
index c815518291..6d7e022df0 100644
--- a/examples/qml/referenceexamples/signal/birthdayparty.h
+++ b/examples/qml/referenceexamples/signal/birthdayparty.h
@@ -64,7 +64,7 @@ public:
BirthdayPartyAttached(QObject *object);
QDate rsvp() const;
- void setRsvp(const QDate &);
+ void setRsvp(QDate);
private:
QDate m_rsvp;
@@ -93,7 +93,7 @@ public:
void startParty();
// ![0]
signals:
- void partyStarted(const QTime &time);
+ void partyStarted(QTime time);
// ![0]
private: