diff options
Diffstat (limited to 'share')
3 files changed, 5 insertions, 5 deletions
diff --git a/share/qtcreator/qml/qmljsdebugger/qdeclarativeviewinspector.cpp b/share/qtcreator/qml/qmljsdebugger/qdeclarativeviewinspector.cpp index e1d440b74b..6f7fb47986 100644 --- a/share/qtcreator/qml/qmljsdebugger/qdeclarativeviewinspector.cpp +++ b/share/qtcreator/qml/qmljsdebugger/qdeclarativeviewinspector.cpp @@ -107,10 +107,10 @@ QDeclarativeViewInspector::QDeclarativeViewInspector(QDeclarativeView *view, QOb SIGNAL(objectCreationRequested(QString,QObject*,QStringList,QString,int)), data.data(), SLOT(_q_createQmlObject(QString,QObject*,QStringList,QString,int))); connect(data->debugService, - SIGNAL(objectDeletionRequested(QObject *)), data.data(), SLOT(_q_deleteQmlObject(QObject *))); + SIGNAL(objectDeletionRequested(QObject*)), data.data(), SLOT(_q_deleteQmlObject(QObject*))); connect(data->debugService, - SIGNAL(objectReparentRequested(QObject *, QObject *)), - data.data(), SLOT(_q_reparentQmlObject(QObject *, QObject *))); + SIGNAL(objectReparentRequested(QObject*,QObject*)), + data.data(), SLOT(_q_reparentQmlObject(QObject*,QObject*))); connect(data->debugService, SIGNAL(clearComponentCacheRequested()), data.data(), SLOT(_q_clearComponentCache())); connect(data->view, SIGNAL(statusChanged(QDeclarativeView::Status)), diff --git a/share/qtcreator/qml/qmlobserver/qmlruntime.cpp b/share/qtcreator/qml/qmlobserver/qmlruntime.cpp index e63213d4dc..5ec86ac16a 100644 --- a/share/qtcreator/qml/qmlobserver/qmlruntime.cpp +++ b/share/qtcreator/qml/qmlobserver/qmlruntime.cpp @@ -934,7 +934,7 @@ void QDeclarativeViewer::showProxySettings() { ProxySettings settingsDlg (this); - connect (&settingsDlg, SIGNAL (accepted()), this, SLOT (proxySettingsChanged ())); + connect(&settingsDlg, SIGNAL(accepted()), this, SLOT(proxySettingsChanged())); settingsDlg.exec(); } diff --git a/share/qtcreator/templates/html5app/html5applicationviewer/touchnavigation/webtouchnavigation.cpp b/share/qtcreator/templates/html5app/html5applicationviewer/touchnavigation/webtouchnavigation.cpp index 0521014f52..b907203c92 100644 --- a/share/qtcreator/templates/html5app/html5applicationviewer/touchnavigation/webtouchnavigation.cpp +++ b/share/qtcreator/templates/html5app/html5applicationviewer/touchnavigation/webtouchnavigation.cpp @@ -145,7 +145,7 @@ WebTouchNavigation::WebTouchNavigation(QObject *parent, QWebPage *webPage) m_physics->setParent(this); m_scroller = new WebTouchScroller(this); - connect(m_physics, SIGNAL(positionChanged(QPointF, QPoint)), m_scroller, SLOT(scroll(QPointF, QPoint))); + connect(m_physics, SIGNAL(positionChanged(QPointF,QPoint)), m_scroller, SLOT(scroll(QPointF,QPoint))); connect(m_scroller, SIGNAL(rangeChanged(QRectF)), m_physics, SLOT(setRange(QRectF))); } |