diff options
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