From kde-commits Tue May 27 09:51:42 2003 From: Rolf Magnus Date: Tue, 27 May 2003 09:51:42 +0000 To: kde-commits Subject: Re: kdelibs/kio/kio X-MARC-Message: https://marc.info/?l=kde-commits&m=105402914522981 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?