diff options
author | Anas Nashif <anas.nashif@intel.com> | 2012-11-08 06:38:55 -0800 |
---|---|---|
committer | Anas Nashif <anas.nashif@intel.com> | 2012-11-08 06:38:55 -0800 |
commit | c0698bfab1b7868ac601441cee30f4d30eed8c90 (patch) | |
tree | 58ff192ff48c344f7d5078347c5edeb5e7a1232c /qtools | |
parent | 6d1ab998fe4a9a28ba662386a943bfc1e41c7cd5 (diff) | |
download | doxygen-c0698bfab1b7868ac601441cee30f4d30eed8c90.tar.gz doxygen-c0698bfab1b7868ac601441cee30f4d30eed8c90.tar.bz2 doxygen-c0698bfab1b7868ac601441cee30f4d30eed8c90.zip |
doxygen-1.5.9-64archs
Diffstat (limited to 'qtools')
-rw-r--r-- | qtools/qgdict.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/qtools/qgdict.cpp b/qtools/qgdict.cpp index e51b9c1..2048e2d 100644 --- a/qtools/qgdict.cpp +++ b/qtools/qgdict.cpp @@ -996,15 +996,15 @@ QDataStream &QGDict::read( QDataStream &s ) break; case IntKey: { - Q_UINT32 k; + unsigned long k; s >> k; read( s, d ); - look_int( k, d, op_insert ); + look_int( (long)k, d, op_insert ); } break; case PtrKey: { - Q_UINT32 k; + unsigned long k; s >> k; read( s, d ); // ### cannot insert 0 - this renders the thing |