diff options
author | Kent Hansen <khansen@trolltech.com> | 2009-08-03 08:35:37 (GMT) |
---|---|---|
committer | Kent Hansen <khansen@trolltech.com> | 2009-08-03 08:40:30 (GMT) |
commit | acd156649b1083aeeb400fe8fdbbf4e55ada4bed (patch) | |
tree | e74b2486cacc4b318b5c0533360ab03e1923a11d /src/gui/statemachine/qmouseeventtransition.cpp | |
parent | 45005c68c6effa41108ef55cd10a84f5977f79a0 (diff) | |
download | Qt-acd156649b1083aeeb400fe8fdbbf4e55ada4bed.zip Qt-acd156649b1083aeeb400fe8fdbbf4e55ada4bed.tar.gz Qt-acd156649b1083aeeb400fe8fdbbf4e55ada4bed.tar.bz2 |
remove constructors that are not useful
The constructors that take a list of target states produce
hard-to-read code, and they're rarely useful in practice since
99% of transitions take a single target state; so it's better
to enforce that setTarget{State,States}() be used instead.
Diffstat (limited to 'src/gui/statemachine/qmouseeventtransition.cpp')
-rw-r--r-- | src/gui/statemachine/qmouseeventtransition.cpp | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/src/gui/statemachine/qmouseeventtransition.cpp b/src/gui/statemachine/qmouseeventtransition.cpp index 0cd096a..dbe50b3 100644 --- a/src/gui/statemachine/qmouseeventtransition.cpp +++ b/src/gui/statemachine/qmouseeventtransition.cpp @@ -112,21 +112,6 @@ QMouseEventTransition::QMouseEventTransition(QObject *object, QEvent::Type type, } /*! - Constructs a new mouse event transition for events of the given \a type for - the given \a object, with the given \a button, \a targets and \a - sourceState. -*/ -QMouseEventTransition::QMouseEventTransition(QObject *object, QEvent::Type type, - Qt::MouseButton button, - const QList<QAbstractState*> &targets, - QState *sourceState) - : QEventTransition(*new QMouseEventTransitionPrivate, object, type, targets, sourceState) -{ - Q_D(QMouseEventTransition); - d->transition = new QBasicMouseEventTransition(type, button); -} - -/*! Destroys this mouse event transition. */ QMouseEventTransition::~QMouseEventTransition() |