equal
deleted
inserted
replaced
69 QByteArray data; |
69 QByteArray data; |
70 }; |
70 }; |
71 |
71 |
72 /*! |
72 /*! |
73 \qmlclass Connections QDeclarativeConnections |
73 \qmlclass Connections QDeclarativeConnections |
|
74 \ingroup qml-utility-elements |
74 \since 4.7 |
75 \since 4.7 |
75 \brief A Connections element describes generalized connections to signals. |
76 \brief A Connections element describes generalized connections to signals. |
76 |
77 |
77 A Connections object creates a connection to a QML signal. |
78 A Connections object creates a connection to a QML signal. |
78 |
79 |
120 onClicked: foo(...) |
121 onClicked: foo(...) |
121 } |
122 } |
122 \endqml |
123 \endqml |
123 |
124 |
124 \sa QtDeclarative |
125 \sa QtDeclarative |
125 */ |
|
126 |
|
127 /*! |
|
128 \internal |
|
129 \class QDeclarativeConnections |
|
130 \brief The QDeclarativeConnections class describes generalized connections to signals. |
|
131 |
|
132 */ |
126 */ |
133 QDeclarativeConnections::QDeclarativeConnections(QObject *parent) : |
127 QDeclarativeConnections::QDeclarativeConnections(QObject *parent) : |
134 QObject(*(new QDeclarativeConnectionsPrivate), parent) |
128 QObject(*(new QDeclarativeConnectionsPrivate), parent) |
135 { |
129 { |
136 } |
130 } |