fixed incompatibility with Qt < 4.6

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@5190 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
csoler 2012-05-25 19:29:09 +00:00
parent bd67b1fe90
commit 40b1f6f053

View File

@ -69,7 +69,7 @@ bool RSListWidgetItem::operator<(const QListWidgetItem &other) const
case 0: //integer type
return v1.toLongLong() < v2.toLongLong();
case 1: //floating point
return v1.toReal() < v2.toReal();
return v1.toDouble() < v2.toDouble();
}
return (v1.toString().compare (v2.toString(), Qt::CaseInsensitive) < 0);