remove QT_NO_SIGNALMAPPER from features
authorTasuku Suzuki <tasuku.suzuki@nokia.com>
Wed, 11 Jul 2012 17:49:47 +0000 (02:49 +0900)
committerQt by Nokia <qt-info@nokia.com>
Thu, 12 Jul 2012 12:28:16 +0000 (14:28 +0200)
QSignalMapper is a small and extremely low-level interface.

Change-Id: I7e799673c6fe559178739fbc58385141ae3f0789
Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
src/corelib/global/qfeatures.h
src/corelib/global/qfeatures.txt
src/corelib/kernel/qsignalmapper.cpp
src/corelib/kernel/qsignalmapper.h

index c51b090..0f8f2b8 100644 (file)
 // QShortcut
 //#define QT_NO_SHORTCUT
 
-// QSignalMapper
-//#define QT_NO_SIGNALMAPPER
-
 // QSizeGrip
 //#define QT_NO_SIZEGRIP
 
index f0b3e4e..1a721e7 100644 (file)
@@ -520,13 +520,6 @@ Requires:
 Name: Status Tip
 SeeAlso: ???
 
-Feature: SIGNALMAPPER
-Description: Supports bundling of signals from identifiable senders.
-Section: Widgets
-Requires:
-Name: QSignalMapper
-SeeAlso: ???
-
 Feature: WHATSTHIS
 Description: Supports displaying "What's this" help.
 Section: Widgets
index c668047..1feac89 100644 (file)
@@ -40,7 +40,6 @@
 ****************************************************************************/
 
 #include "qsignalmapper.h"
-#ifndef QT_NO_SIGNALMAPPER
 #include "qhash.h"
 #include "qobject_p.h"
 
@@ -305,5 +304,3 @@ QT_END_NAMESPACE
 
 #include "moc_qsignalmapper.cpp"
 
-#endif // QT_NO_SIGNALMAPPER
-
index f4e7879..14eacfe 100644 (file)
@@ -48,8 +48,6 @@ QT_BEGIN_HEADER
 
 QT_BEGIN_NAMESPACE
 
-
-#ifndef QT_NO_SIGNALMAPPER
 class QSignalMapperPrivate;
 
 class Q_CORE_EXPORT QSignalMapper : public QObject
@@ -85,7 +83,6 @@ private:
     Q_DISABLE_COPY(QSignalMapper)
     Q_PRIVATE_SLOT(d_func(), void _q_senderDestroyed())
 };
-#endif // QT_NO_SIGNALMAPPER
 
 QT_END_NAMESPACE