On Monday 26 May 2003 23:02, Pascal Létourneau wrote: > CVS commit by pletourn: > > With Qt3.2b1, KIO::filesize_t is no longer converted to an QVariant::Int. > > > M +4 -1 kfilemetainfo.cpp 1.70 > > > --- kdelibs/kio/kio/kfilemetainfo.cpp #1.69:1.70 > @@ -1473,4 +1473,7 @@ QString KFileMimeTypeInfo::ItemInfo::str > > case QVariant::Int : > +#if QT_VERSION >= 0x030200 > + case QVariant::ULongLong : > +#endif > if (unit() == KFileMimeTypeInfo::Seconds) > { Ah, that's good. But wouldn't you have to replace toInt with toULongLong if the type is ULongLong?