From d472db241215326dcc031db3329497fefa1ec800 Mon Sep 17 00:00:00 2001 From: Marc Mutz Date: Thu, 12 Jul 2012 22:24:36 +0200 Subject: QtGui: normalize signals/slots This is the result of running util/normalize --modify from Qt 4.7 with manual review. Change-Id: I36e54222b27f1e71eb7d89cdfc595177c8d2bdb3 Reviewed-by: Laszlo Papp Reviewed-by: Girish Ramakrishnan --- src/gui/kernel/qwindow.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/gui/kernel/qwindow.cpp b/src/gui/kernel/qwindow.cpp index 3c5d70d741..c1f589ae91 100644 --- a/src/gui/kernel/qwindow.cpp +++ b/src/gui/kernel/qwindow.cpp @@ -145,7 +145,7 @@ QWindow::QWindow(QScreen *targetScreen) //screen list is populated. Q_ASSERT(d->screen); - connect(d->screen, SIGNAL(destroyed(QObject *)), this, SLOT(screenDestroyed(QObject *))); + connect(d->screen, SIGNAL(destroyed(QObject*)), this, SLOT(screenDestroyed(QObject*))); QGuiApplicationPrivate::window_list.prepend(this); } @@ -1203,10 +1203,10 @@ void QWindow::setScreen(QScreen *newScreen) if (wasCreated) destroy(); if (d->screen) - disconnect(d->screen, SIGNAL(destroyed(QObject *)), this, SLOT(screenDestroyed(QObject *))); + disconnect(d->screen, SIGNAL(destroyed(QObject*)), this, SLOT(screenDestroyed(QObject*))); d->screen = newScreen; if (newScreen) { - connect(d->screen, SIGNAL(destroyed(QObject *)), this, SLOT(screenDestroyed(QObject *))); + connect(d->screen, SIGNAL(destroyed(QObject*)), this, SLOT(screenDestroyed(QObject*))); if (wasCreated) create(); } -- cgit v1.2.3