diff options
author | Prasanth Ullattil <prasanth.ullattil@nokia.com> | 2009-10-08 10:11:32 (GMT) |
---|---|---|
committer | Prasanth Ullattil <prasanth.ullattil@nokia.com> | 2009-10-08 10:28:42 (GMT) |
commit | 1040ba2fd850196234424f769e28d513a6eb0948 (patch) | |
tree | a2e5366716be4a28bb0877bcd5d483b697d74b8e /src/gui/util | |
parent | 5987274b8ce244d0020359d113800e7305367c68 (diff) | |
download | Qt-1040ba2fd850196234424f769e28d513a6eb0948.zip Qt-1040ba2fd850196234424f769e28d513a6eb0948.tar.gz Qt-1040ba2fd850196234424f769e28d513a6eb0948.tar.bz2 |
Fix compile errors on mingw (The version supplied with Qt 4.5)
Added the missing defines
Reviewed-by: Denis
Diffstat (limited to 'src/gui/util')
-rw-r--r-- | src/gui/util/qdesktopservices_win.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/gui/util/qdesktopservices_win.cpp b/src/gui/util/qdesktopservices_win.cpp index 4ecef97..c0bd5e7 100644 --- a/src/gui/util/qdesktopservices_win.cpp +++ b/src/gui/util/qdesktopservices_win.cpp @@ -59,6 +59,11 @@ # endif #endif +#if defined(Q_CC_MINGW) && !defined(CSIDL_MYMUSIC) +#define CSIDL_MYMUSIC 13 +#define CSIDL_MYVIDEO 14 +#endif + #ifndef QT_NO_DESKTOPSERVICES QT_BEGIN_NAMESPACE |