summaryrefslogtreecommitdiffstats
path: root/src/corelib/statemachine/qeventtransition.cpp
diff options
context:
space:
mode:
authorKent Hansen <khansen@trolltech.com>2009-04-29 09:05:03 (GMT)
committerKent Hansen <khansen@trolltech.com>2009-04-29 09:05:03 (GMT)
commita7c2eff47c5ad3e98ca5505b64cdbba716cbedbd (patch)
tree086d39db5c39cfbed883f9f019c709c7a6f935f1 /src/corelib/statemachine/qeventtransition.cpp
parent58b74319a639cb471cdec92c0e8a054fc6d4d5f5 (diff)
downloadQt-a7c2eff47c5ad3e98ca5505b64cdbba716cbedbd.zip
Qt-a7c2eff47c5ad3e98ca5505b64cdbba716cbedbd.tar.gz
Qt-a7c2eff47c5ad3e98ca5505b64cdbba716cbedbd.tar.bz2
rename a few properties and methods
Result of API review.
Diffstat (limited to 'src/corelib/statemachine/qeventtransition.cpp')
-rw-r--r--src/corelib/statemachine/qeventtransition.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/corelib/statemachine/qeventtransition.cpp b/src/corelib/statemachine/qeventtransition.cpp
index 09b89f3..2126373 100644
--- a/src/corelib/statemachine/qeventtransition.cpp
+++ b/src/corelib/statemachine/qeventtransition.cpp
@@ -88,7 +88,7 @@ QT_BEGIN_NAMESPACE
*/
/*!
- \property QEventTransition::object
+ \property QEventTransition::eventObject
\brief the event source that this event transition is associated with
*/
@@ -229,7 +229,7 @@ void QEventTransition::setEventType(QEvent::Type type)
/*!
Returns the event source associated with this event transition.
*/
-QObject *QEventTransition::eventSource() const
+QObject *QEventTransition::eventObject() const
{
Q_D(const QEventTransition);
return d->object;
@@ -239,7 +239,7 @@ QObject *QEventTransition::eventSource() const
Sets the event source associated with this event transition to be the given
\a object.
*/
-void QEventTransition::setEventSource(QObject *object)
+void QEventTransition::setEventObject(QObject *object)
{
Q_D(QEventTransition);
if (d->object == object)