mirror of
https://github.com/qTox/qTox.git
synced 2024-03-22 14:00:36 +08:00
*tweaks, omg. The vagaries of version control...
This commit is contained in:
parent
310fd21123
commit
ba2bc21489
1
res.qrc
1
res.qrc
|
@ -26,7 +26,6 @@
|
|||
<file>img/add.png</file>
|
||||
<file>img/settings.png</file>
|
||||
<file>img/transfer.png</file>
|
||||
<file>img/checkmark.png</file>
|
||||
<file>ui/acceptFileButton/default.png</file>
|
||||
<file>ui/acceptFileButton/hover.png</file>
|
||||
<file>ui/acceptFileButton/pressed.png</file>
|
||||
|
|
|
@ -53,13 +53,13 @@ void FilesForm::show(Ui::Widget& ui)
|
|||
|
||||
void FilesForm::onFileDownloadComplete(const QString& path)
|
||||
{
|
||||
QListWidgetItem* tmp = new QListWidgetItem(QIcon(":/img/checkmark.png"), path);
|
||||
QListWidgetItem* tmp = new QListWidgetItem(QIcon("ui/acceptFileButton/default.png"), path);
|
||||
recvd.addItem(tmp);
|
||||
}
|
||||
|
||||
void FilesForm::onFileUploadComplete(const QString& path)
|
||||
{
|
||||
QListWidgetItem* tmp = new QListWidgetItem(QIcon(":/img/checkmark.png"), path);
|
||||
QListWidgetItem* tmp = new QListWidgetItem(QIcon("ui/acceptFileButton/default.png"), path);
|
||||
sent.addItem(tmp);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user