From 55a0b33994ff7b292055065065a5cc2fd13b3a55 Mon Sep 17 00:00:00 2001 From: Robin Burchell Date: Thu, 5 Jan 2012 07:34:55 +0100 Subject: [PATCH] Avoid redefining the lastWindowClosed() signal. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This prevents things like the following (from qmlviewer): QMetaObject::indexOfSignal: signal lastWindowClosed() from QGuiApplication redefined in QApplication Change-Id: I4b30235e379aedaa913ea30f05daac7079f285e9 Reviewed-by: Samuel Rødal --- src/widgets/kernel/qapplication.h | 1 - 1 file changed, 1 deletion(-) diff --git a/src/widgets/kernel/qapplication.h b/src/widgets/kernel/qapplication.h index 32706f8b06..ee55f7c33f 100644 --- a/src/widgets/kernel/qapplication.h +++ b/src/widgets/kernel/qapplication.h @@ -242,7 +242,6 @@ public: #endif Q_SIGNALS: - void lastWindowClosed(); void focusChanged(QWidget *old, QWidget *now); #ifndef QT_NO_SESSIONMANAGER void commitDataRequest(QSessionManager &sessionManager);