added icon for rscollection file type

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@4665 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
csoler 2011-11-09 14:02:15 +00:00
parent 50d5c1159d
commit f77bb8136f
6 changed files with 13 additions and 3 deletions

View file

@ -655,6 +655,8 @@ QIcon TransfersDialog::getIconFromExtension(QString ext)
return QIcon(QString::fromUtf8(":/images/FileTypeDocument.png")) ;
else if (ext == "html" || ext == "htm" || ext == "php")
return QIcon(QString::fromUtf8(":/images/FileTypeDocument.png")) ;
else if (ext == "rscollection")
return QIcon(QString::fromUtf8(":/images/mimetypes/rscollection-16.png")) ;
else
return QIcon(QString::fromUtf8(":/images/FileTypeAny.png")) ;
}