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/QtUI | |
| 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/QtUI')
| -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 | |||
| @@ -44,11 +44,11 @@ QtFileTransferListWidget::QtFileTransferListWidget() : fileTransferOverview(0) { | |||
| 44 | 44 | ||
| 45 | QHBoxLayout* buttonLayout = new QHBoxLayout(bottom); | 45 | QHBoxLayout* buttonLayout = new QHBoxLayout(bottom); |
| 46 | buttonLayout->setContentsMargins(10,0,20,0); | 46 | buttonLayout->setContentsMargins(10,0,20,0); |
| 47 | buttonLayout->setSpacing(0); | 47 | buttonLayout->setSpacing(0); |
| 48 | 48 | ||
| 49 | clearFinished = new QPushButton(tr("Clear Inactive Transfers"), bottom); | 49 | clearFinished = new QPushButton(tr("Clear all"), bottom); |
| 50 | clearFinished->setEnabled(false); | 50 | clearFinished->setEnabled(false); |
| 51 | connect(clearFinished, SIGNAL(clicked()), this, SLOT(clearInactiveTransfers())); | 51 | connect(clearFinished, SIGNAL(clicked()), this, SLOT(clearInactiveTransfers())); |
| 52 | buttonLayout->addWidget(clearFinished); | 52 | buttonLayout->addWidget(clearFinished); |
| 53 | 53 | ||
| 54 | setWindowTitle(tr("File Transfer List")); | 54 | setWindowTitle(tr("File Transfer List")); |
Swift