Removed some more compiler warnings in retroshare-gui.

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@4566 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
thunder2 2011-08-14 21:25:41 +00:00
parent cd0854c4e8
commit 39708cdd0b
8 changed files with 10 additions and 10 deletions

View file

@ -761,7 +761,7 @@ QModelIndex FlatStyle_RDM::index(int row, int column, const QModelIndex & parent
if(row < 0)
return QModelIndex() ;
if(row < _ref_entries.size())
if(row < (int) _ref_entries.size())
{
void *ref = _ref_entries[row].first ;