- Improved icons in torrent creation dialog for add_older and add_file

This commit is contained in:
Christophe Dumez 2007-04-07 13:54:59 +00:00
parent 8980905c24
commit 3e1f7d2193
30 changed files with 365 additions and 365 deletions

View file

@ -47,9 +47,8 @@ createtorrent::createtorrent(QWidget *parent): QDialog(parent){
addURLSeed_button->setIcon(QIcon(QString::fromUtf8(":/Icons/skin/add.png")));
removeURLSeed_button->setIcon(QIcon(QString::fromUtf8(":/Icons/skin/remove.png")));
removeFolder_button->setIcon(QIcon(QString::fromUtf8(":/Icons/skin/remove.png")));
//TODO: Change those two
addFolder_button->setIcon(QIcon(QString::fromUtf8(":/Icons/skin/add.png")));
addFile_button->setIcon(QIcon(QString::fromUtf8(":/Icons/skin/add.png")));
addFolder_button->setIcon(QIcon(QString::fromUtf8(":/Icons/add_folder.png")));
addFile_button->setIcon(QIcon(QString::fromUtf8(":/Icons/add_file.png")));
setAttribute(Qt::WA_DeleteOnClose);
show();
}