diff options
author | Thomas Hartmann <Thomas.Hartmann@nokia.com> | 2009-04-08 13:47:42 (GMT) |
---|---|---|
committer | Thomas Hartmann <Thomas.Hartmann@nokia.com> | 2009-04-08 13:47:42 (GMT) |
commit | b273cd322345c54d5cbd6f178791d1ccfcc08e05 (patch) | |
tree | 5d088c2be11ddf5248f874494da0a03284ae4db1 | |
parent | c4c7cd9740819e375ad6a859de406de0781f53f8 (diff) | |
download | Qt-b273cd322345c54d5cbd6f178791d1ccfcc08e05.zip Qt-b273cd322345c54d5cbd6f178791d1ccfcc08e05.tar.gz Qt-b273cd322345c54d5cbd6f178791d1ccfcc08e05.tar.bz2 |
BT: Compilefix for Windows CE and namespaces
RevBy: Mauricek
Details: functions needs to be declared outside of the namespace
-rw-r--r-- | src/gui/inputmethod/qwininputcontext_win.cpp | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/gui/inputmethod/qwininputcontext_win.cpp b/src/gui/inputmethod/qwininputcontext_win.cpp index 720f0b8..e3e8aa4 100644 --- a/src/gui/inputmethod/qwininputcontext_win.cpp +++ b/src/gui/inputmethod/qwininputcontext_win.cpp @@ -57,15 +57,17 @@ #ifdef Q_IME_DEBUG #include "qdebug.h" -#endif - -QT_BEGIN_NAMESPACE +#endif -extern bool qt_sendSpontaneousEvent(QObject*, QEvent*); #if defined(Q_OS_WINCE) extern void qt_wince_show_SIP(bool show); // defined in qguifunctions_wince.cpp #endif +QT_BEGIN_NAMESPACE + +extern bool qt_sendSpontaneousEvent(QObject*, QEvent*); + + DEFINE_GUID(IID_IActiveIMMApp, 0x08c0e040, 0x62d1, 0x11d1, 0x93, 0x26, 0x0, 0x60, 0xb0, 0x67, 0xb8, 0x6e); |