Changeset 14385
- Timestamp:
- Dec 14, 2014, 11:57:23 AM (8 years ago)
- Location:
- trunk/qt
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/qt/app.cc
r14379 r14385 62 62 63 63 const char* 64 getUsage ( void)64 getUsage () 65 65 { 66 66 return "Usage:\n" … … 69 69 70 70 void 71 showUsage ( void)71 showUsage () 72 72 { 73 73 tr_getopt_usage (MY_READABLE_NAME, getUsage (), opts); -
trunk/qt/mainwin.h
r14379 r14385 146 146 147 147 private: 148 QMenu * createOptionsMenu ( void);149 QWidget * createStatusBar ( void);148 QMenu * createOptionsMenu (); 149 QWidget * createStatusBar (); 150 150 QWidget * myStatusBar; 151 151 QPushButton * myAltSpeedButton; -
trunk/qt/make-dialog.cc
r14380 r14385 355 355 b->setText (myDestination); 356 356 connect (b, SIGNAL(clicked(bool)), 357 this, SLOT(onDestinationClicked( void)));357 this, SLOT(onDestinationClicked())); 358 358 myDestinationButton = b; 359 359 hig->addRow (tr ("Sa&ve to:"), b); … … 367 367 myFolderButton->setStyleSheet (QString::fromUtf8 ("text-align: left; padding-left: 5; padding-right: 5")); 368 368 connect (myFolderButton, SIGNAL(clicked(bool)), 369 this, SLOT(onFolderClicked( void)));369 this, SLOT(onFolderClicked())); 370 370 hig->addRow (myFolderRadio, myFolderButton); 371 371 enableBuddyWhenChecked (myFolderRadio, myFolderButton); … … 382 382 myFileButton->setStyleSheet (QString::fromUtf8 ("text-align: left; padding-left: 5; padding-right: 5")); 383 383 connect (myFileButton, SIGNAL(clicked(bool)), 384 this, SLOT(onFileClicked( void)));384 this, SLOT(onFileClicked())); 385 385 hig->addRow (myFileRadio, myFileButton); 386 386 enableBuddyWhenChecked (myFileRadio, myFileButton); -
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.