diff options
author | Frans Englich <frans.englich@nokia.com> | 2009-09-18 15:08:54 (GMT) |
---|---|---|
committer | Frans Englich <frans.englich@nokia.com> | 2009-09-23 12:39:34 (GMT) |
commit | c2db588c321301c30006be0720eda88b903738f1 (patch) | |
tree | 55e415732d27ca1dec756aaa1e7266eb4c428ed8 /src | |
parent | 025a30273124845bafe827065894264c4352d8b2 (diff) | |
download | Qt-c2db588c321301c30006be0720eda88b903738f1.zip Qt-c2db588c321301c30006be0720eda88b903738f1.tar.gz Qt-c2db588c321301c30006be0720eda88b903738f1.tar.bz2 |
Build fix for SDK 3.1 and 3.2.
Diffstat (limited to 'src')
-rw-r--r-- | src/3rdparty/phonon/mmf/mmfphonondebug/objectdump_symbian.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/3rdparty/phonon/mmf/mmfphonondebug/objectdump_symbian.cpp b/src/3rdparty/phonon/mmf/mmfphonondebug/objectdump_symbian.cpp index 3d1d8b6..f8adcd5 100644 --- a/src/3rdparty/phonon/mmf/mmfphonondebug/objectdump_symbian.cpp +++ b/src/3rdparty/phonon/mmf/mmfphonondebug/objectdump_symbian.cpp @@ -80,10 +80,13 @@ QList<QByteArray> QAnnotatorWindow::annotation(const QObject& object) stream << "window: "; + // ClientHandle() is available first in 5.0. +#if !defined(__SERIES60_31__) && !defined(__S60_32__) // Client-side window handle // Cast to a void pointer so that log output is in hexadecimal format. stream << "cli " << reinterpret_cast<const void*>(window.ClientHandle()) << ' '; - +#endif + // Server-side address of CWsWindow object // This is useful for correlation with the window tree dumped by the window // server (see RWsSession::LogCommand). |