diff options
author | Tobias Markmann <tm@ayena.de> | 2015-07-13 09:47:29 (GMT) |
---|---|---|
committer | Tobias Markmann <tm@ayena.de> | 2015-07-13 09:47:29 (GMT) |
commit | c1c1b887ace33ae65a8b6ea00ca1d100c49e024a (patch) | |
tree | 2fdf7fa665574ce536dfde48a3bddfc04521d003 /Swift | |
parent | b54aa689ffc6bec7987c193e28c641d2f0f73236 (diff) | |
download | swift-c1c1b887ace33ae65a8b6ea00ca1d100c49e024a.zip swift-c1c1b887ace33ae65a8b6ea00ca1d100c49e024a.tar.bz2 |
Change label of button clearing the file transfer list
Test-Information:
Checked that the button has the new label.
Change-Id: Ic0e00e479de01decd23e14477d0bf34950ab6160
Diffstat (limited to 'Swift')
-rw-r--r-- | Swift/QtUI/QtFileTransferListWidget.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Swift/QtUI/QtFileTransferListWidget.cpp b/Swift/QtUI/QtFileTransferListWidget.cpp index 729c95f..d95cd06 100644 --- a/Swift/QtUI/QtFileTransferListWidget.cpp +++ b/Swift/QtUI/QtFileTransferListWidget.cpp @@ -46,7 +46,7 @@ QtFileTransferListWidget::QtFileTransferListWidget() : fileTransferOverview(0) { buttonLayout->setContentsMargins(10,0,20,0); buttonLayout->setSpacing(0); - clearFinished = new QPushButton(tr("Clear Inactive Transfers"), bottom); + clearFinished = new QPushButton(tr("Clear all"), bottom); clearFinished->setEnabled(false); connect(clearFinished, SIGNAL(clicked()), this, SLOT(clearInactiveTransfers())); buttonLayout->addWidget(clearFinished); |