summaryrefslogtreecommitdiffstats
path: root/src/imports/webview
diff options
context:
space:
mode:
authorThiago Macieira <thiago.macieira@intel.com>2014-02-02 14:08:51 -0800
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-02-04 04:44:28 +0100
commit2c396cd08c900dc06a0fcefa96e27fe54eeeb8a0 (patch)
tree0ec1ea2ea9089f2d27a6c6fe8df9507485f7b70b /src/imports/webview
parent9e1e81ecc2c88c97991b6bd93cbf4c660272b5c6 (diff)
Normalize signal & slot signatures in connection
Profiling shows Qt Creator spends 2% of its load time normalizing Change-Id: Id7ba78038c8504d960172923026245d28de182e8 Reviewed-by: Alan Alpert <aalpert@blackberry.com>
Diffstat (limited to 'src/imports/webview')
-rw-r--r--src/imports/webview/qdeclarativewebview.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/imports/webview/qdeclarativewebview.cpp b/src/imports/webview/qdeclarativewebview.cpp
index 5784ba40..84524d8d 100644
--- a/src/imports/webview/qdeclarativewebview.cpp
+++ b/src/imports/webview/qdeclarativewebview.cpp
@@ -302,7 +302,7 @@ void QDeclarativeWebView::init()
if (!preferredHeight())
setPreferredHeight(d->view->preferredHeight());
connect(d->view, SIGNAL(geometryChanged()), this, SLOT(updateDeclarativeWebViewSize()));
- connect(d->view, SIGNAL(doubleClick(int, int)), this, SIGNAL(doubleClick(int, int)));
+ connect(d->view, SIGNAL(doubleClick(int,int)), this, SIGNAL(doubleClick(int,int)));
connect(d->view, SIGNAL(scaleChanged()), this, SIGNAL(contentsScaleChanged()));
}