Changeset 14385 for trunk/qt/prefs-dialog.cc
- Timestamp:
- Dec 14, 2014, 11:57:23 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/qt/prefs-dialog.cc
r14377 r14385 477 477 478 478 void 479 PrefsDialog::onScriptClicked ( void)479 PrefsDialog::onScriptClicked () 480 480 { 481 481 const QString title = tr ("Select \"Torrent Done\" Script"); … … 488 488 489 489 void 490 PrefsDialog::onIncompleteClicked ( void)490 PrefsDialog::onIncompleteClicked () 491 491 { 492 492 const QString title = tr ("Select Incomplete Directory"); … … 499 499 500 500 void 501 PrefsDialog::onWatchClicked ( void)501 PrefsDialog::onWatchClicked () 502 502 { 503 503 const QString title = tr ("Select Watch Directory"); … … 510 510 511 511 void 512 PrefsDialog::onDestinationClicked ( void)512 PrefsDialog::onDestinationClicked () 513 513 { 514 514 const QString title = tr ("Select Destination"); … … 573 573 b->setIcon (folderPixmap); 574 574 b->setStyleSheet (QString::fromUtf8 ("text-align: left; padding-left: 5; padding-right: 5")); 575 connect (b, SIGNAL(clicked(bool)), this, SLOT(onWatchClicked( void)));575 connect (b, SIGNAL(clicked(bool)), this, SLOT(onWatchClicked())); 576 576 hig->addRow (l, b); 577 577 enableBuddyWhenChecked (qobject_cast<QCheckBox*>(l), b); … … 586 586 b->setIcon (folderPixmap); 587 587 b->setStyleSheet (QString::fromUtf8 ("text-align: left; padding-left: 5; padding-right: 5")); 588 connect (b, SIGNAL(clicked(bool)), this, SLOT(onDestinationClicked( void)));588 connect (b, SIGNAL(clicked(bool)), this, SLOT(onDestinationClicked())); 589 589 hig->addRow (tr ("Save to &Location:"), b); 590 590 … … 611 611 b->setIcon (folderPixmap); 612 612 b->setStyleSheet (QString::fromUtf8 ("text-align: left; padding-left: 5; padding-right: 5")); 613 connect (b, SIGNAL(clicked(bool)), this, SLOT(onIncompleteClicked( void)));613 connect (b, SIGNAL(clicked(bool)), this, SLOT(onIncompleteClicked())); 614 614 hig->addRow (myIncompleteCheckbox, b); 615 615 enableBuddyWhenChecked (qobject_cast<QCheckBox*>(l), b); … … 619 619 b->setIcon (filePixmap); 620 620 b->setStyleSheet (QString::fromUtf8 ("text-align: left; padding-left: 5; padding-right: 5")); 621 connect (b, SIGNAL(clicked(bool)), this, SLOT(onScriptClicked( void)));621 connect (b, SIGNAL(clicked(bool)), this, SLOT(onScriptClicked())); 622 622 hig->addRow (myTorrentDoneScriptCheckbox, b); 623 623 enableBuddyWhenChecked (qobject_cast<QCheckBox*>(l), b);
Note: See TracChangeset
for help on using the changeset viewer.