mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-12-21 21:55:15 -05:00
update RemoteDirModel's extension's
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@896 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
797d5fc933
commit
03d2ba0857
@ -277,7 +277,7 @@ RemoteDirModel::RemoteDirModel(bool mode, QObject *parent)
|
|||||||
QIcon icon(":/images/FileTypePicture.png");
|
QIcon icon(":/images/FileTypePicture.png");
|
||||||
return icon;
|
return icon;
|
||||||
}
|
}
|
||||||
else if (ext == "avi" || ext == "mpg" || ext == "mpeg" || ext == "wmv"
|
else if (ext == "avi" || ext == "AVI" || ext == "mpg" || ext == "mpeg" || ext == "wmv" || ext == "ogm"
|
||||||
|| ext == "mkv" || ext == "mp4" || ext == "flv" || ext == "mov"
|
|| ext == "mkv" || ext == "mp4" || ext == "flv" || ext == "mov"
|
||||||
|| ext == "vob" || ext == "qt" || ext == "rm" || ext == "3gp")
|
|| ext == "vob" || ext == "qt" || ext == "rm" || ext == "3gp")
|
||||||
{
|
{
|
||||||
@ -285,13 +285,13 @@ RemoteDirModel::RemoteDirModel(bool mode, QObject *parent)
|
|||||||
QIcon icon(":/images/FileTypeVideo.png");
|
QIcon icon(":/images/FileTypeVideo.png");
|
||||||
return icon;
|
return icon;
|
||||||
}
|
}
|
||||||
else if (ext == "ogg" || ext == "mp3" || ext == "wav" || ext == "wma")
|
else if (ext == "ogg" || ext == "mp3" || ext == "wav" || ext == "wma" || ext == "xpm")
|
||||||
{
|
{
|
||||||
//setIcon(0, QIcon(":/images/soundfile.png"));
|
//setIcon(0, QIcon(":/images/soundfile.png"));
|
||||||
QIcon icon(":/images/FileTypeAudio.png");
|
QIcon icon(":/images/FileTypeAudio.png");
|
||||||
return icon;
|
return icon;
|
||||||
}
|
}
|
||||||
else if (ext == "tar" || ext == "bz2" || ext == "zip" || ext == "gz"
|
else if (ext == "tar" || ext == "bz2" || ext == "zip" || ext == "gz" || ext == "7z"
|
||||||
|| ext == "rar" || ext == "rpm" || ext == "deb")
|
|| ext == "rar" || ext == "rpm" || ext == "deb")
|
||||||
{
|
{
|
||||||
//setIcon(0, QIcon(":/images/compressedfile.png"));
|
//setIcon(0, QIcon(":/images/compressedfile.png"));
|
||||||
|
Loading…
Reference in New Issue
Block a user