diff options
| author | Thiago Macieira <thiago.macieira@intel.com> | 2014-02-02 14:09:09 -0800 |
|---|---|---|
| committer | The Qt Project <gerrit-noreply@qt-project.org> | 2014-02-04 14:40:21 +0100 |
| commit | 83bf3d791488e763b2d32408edab7f8040c7d0ac (patch) | |
| tree | 26b8aee72d43379149d91fcb496d4f21ac1a9896 /src/widgets/qquickqmessagebox.cpp | |
| parent | a1df3e8537b7474db08e81bd1f0faebb13caebf4 (diff) | |
Normalize signal & slot signatures in connection
Profiling shows Qt Creator spends 2% of its load time normalizing
Change-Id: I793aea0f46cc74f6466e52d00c0ec868c6603c77
Reviewed-by: Jens Bache-Wiig <jens.bache-wiig@digia.com>
Reviewed-by: Shawn Rutledge <shawn.rutledge@digia.com>
Diffstat (limited to 'src/widgets/qquickqmessagebox.cpp')
| -rw-r--r-- | src/widgets/qquickqmessagebox.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/widgets/qquickqmessagebox.cpp b/src/widgets/qquickqmessagebox.cpp index 1b92efc5e..5d7340115 100644 --- a/src/widgets/qquickqmessagebox.cpp +++ b/src/widgets/qquickqmessagebox.cpp @@ -134,8 +134,8 @@ QPlatformDialogHelper *QQuickQMessageBox::helper() // dismissed by closing the window rather than by one of its button widgets. connect(helper, SIGNAL(accept()), this, SLOT(accept())); connect(helper, SIGNAL(reject()), this, SLOT(reject())); - connect(helper, SIGNAL(clicked(QMessageDialogOptions::StandardButton, QMessageDialogOptions::ButtonRole)), - this, SLOT(click(QMessageDialogOptions::StandardButton, QMessageDialogOptions::ButtonRole))); + connect(helper, SIGNAL(clicked(QMessageDialogOptions::StandardButton,QMessageDialogOptions::ButtonRole)), + this, SLOT(click(QMessageDialogOptions::StandardButton,QMessageDialogOptions::ButtonRole))); } return QQuickAbstractMessageDialog::m_dlgHelper; |
