diff options
author | Dominik Holland <dominik.holland@nokia.com> | 2010-03-10 12:25:35 (GMT) |
---|---|---|
committer | Dominik Holland <dominik.holland@nokia.com> | 2010-03-10 12:37:39 (GMT) |
commit | 5fa84eeac031ef53babfa8ca616ca69cc1f2c514 (patch) | |
tree | 16178169561de1a4f235c0347bf4f990d8013707 | |
parent | 9e50f610b44778b8baf64ef569c574f067cc62b8 (diff) | |
download | Qt-5fa84eeac031ef53babfa8ca616ca69cc1f2c514.zip Qt-5fa84eeac031ef53babfa8ca616ca69cc1f2c514.tar.gz Qt-5fa84eeac031ef53babfa8ca616ca69cc1f2c514.tar.bz2 |
Fix Build Failure for Maemo 5 Debug Build
-rw-r--r-- | src/gui/painting/qdrawhelper.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/painting/qdrawhelper.cpp b/src/gui/painting/qdrawhelper.cpp index 5f70cb7..9956019 100644 --- a/src/gui/painting/qdrawhelper.cpp +++ b/src/gui/painting/qdrawhelper.cpp @@ -7944,8 +7944,6 @@ void qInitDrawhelperAsm() } #endif // IWMMXT -#endif // QT_NO_DEBUG - #if defined(Q_CC_RVCT) && defined(QT_HAVE_ARMV6) functionForModeAsm = qt_functionForMode_ARMv6; functionForModeSolidAsm = qt_functionForModeSolid_ARMv6; @@ -7967,6 +7965,8 @@ void qInitDrawhelperAsm() } #endif +#endif // QT_NO_DEBUG + if (functionForModeSolidAsm) { const int destinationMode = QPainter::CompositionMode_Destination; functionForModeSolidAsm[destinationMode] = functionForModeSolid_C[destinationMode]; |