diff options
author | Norwegian Rock Cat <qt-info@nokia.com> | 2009-07-24 07:50:10 (GMT) |
---|---|---|
committer | Norwegian Rock Cat <qt-info@nokia.com> | 2009-07-24 07:50:10 (GMT) |
commit | b4f2e138422076ed5d615181fc336dbb90279935 (patch) | |
tree | 851759b171c15ddf36aa233264f9e508a1bdc687 | |
parent | c3ca46544548a95f99c8b1e320b65ff7ac1c42c2 (diff) | |
download | Qt-b4f2e138422076ed5d615181fc336dbb90279935.zip Qt-b4f2e138422076ed5d615181fc336dbb90279935.tar.gz Qt-b4f2e138422076ed5d615181fc336dbb90279935.tar.bz2 |
Compile.
It appears that uint != UInt32 in 32-bit world, don't ask why. Correct
the typedef.
Reviewed-by: Carlos Duclos
-rw-r--r-- | src/corelib/io/qfilesystemwatcher_fsevents_p.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/corelib/io/qfilesystemwatcher_fsevents_p.h b/src/corelib/io/qfilesystemwatcher_fsevents_p.h index 2e8b788..4770867 100644 --- a/src/corelib/io/qfilesystemwatcher_fsevents_p.h +++ b/src/corelib/io/qfilesystemwatcher_fsevents_p.h @@ -67,7 +67,7 @@ typedef struct __FSEventStream *FSEventStreamRef; typedef const struct __FSEventStream *ConstFSEventStreamRef; typedef const struct __CFArray *CFArrayRef; -typedef uint FSEventStreamEventFlags; +typedef UInt32 FSEventStreamEventFlags; typedef uint64_t FSEventStreamEventId; QT_BEGIN_NAMESPACE |