diff options
author | Gareth Stockwell <ext-gareth.stockwell@nokia.com> | 2009-11-19 17:21:22 (GMT) |
---|---|---|
committer | Frans Englich <frans.englich@nokia.com> | 2009-11-19 18:42:48 (GMT) |
commit | f3118df6af745759a73d8a9f40d1fa1a90a4385a (patch) | |
tree | 2591ac0d90a0bd749575cea8123c3d5126cd9416 /src/3rdparty/phonon/mmf/objectdump_symbian.cpp | |
parent | 041f7fc92959d4aefa88fca7a6f5d153faf4aa0a (diff) | |
download | Qt-f3118df6af745759a73d8a9f40d1fa1a90a4385a.zip Qt-f3118df6af745759a73d8a9f40d1fa1a90a4385a.tar.gz Qt-f3118df6af745759a73d8a9f40d1fa1a90a4385a.tar.bz2 |
Fix for compile error in Phonon MMF backend
This was introduced by d0b0b525de.
The use of QT_NO_DEBUG macros causes release-armv5 builds to fail
when the -release option is passed to configure.
This change causes the debugging code (ObjectDump and related
classes) to be included in release builds, although these functions
are not executed.
This is a temporary fix; task QTBUG-6012 has been created for
re-removing this code from release builds.
Reviewed-by: Frans Englich
Diffstat (limited to 'src/3rdparty/phonon/mmf/objectdump_symbian.cpp')
-rw-r--r-- | src/3rdparty/phonon/mmf/objectdump_symbian.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/3rdparty/phonon/mmf/objectdump_symbian.cpp b/src/3rdparty/phonon/mmf/objectdump_symbian.cpp index 41dd240..2efebdb 100644 --- a/src/3rdparty/phonon/mmf/objectdump_symbian.cpp +++ b/src/3rdparty/phonon/mmf/objectdump_symbian.cpp @@ -16,8 +16,6 @@ along with this library. If not, see <http://www.gnu.org/licenses/>. */ -#ifndef QT_NO_DEBUG - #include <QTextStream> #include <QWidget> #include <coecntrl.h> @@ -160,5 +158,3 @@ void addDefaultAnnotators_sys(QVisitor& visitor) QT_END_NAMESPACE -#endif - |