Skip to content

Commit

Permalink
unreferenced parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
orkblutt committed Sep 1, 2017
1 parent d483d76 commit 54fbde2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 11 deletions.
12 changes: 2 additions & 10 deletions mainwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,6 @@ void MainWindow::on_groupBoxWatchdog_clicked(bool checked)
ui->groupBoxWatchdog->setToolTip("");
else
ui->groupBoxWatchdog->setToolTip("Check it to activate the following watchdog options");

}

void MainWindow::on_spinBoxMax0MHs_valueChanged(int arg1)
Expand All @@ -425,7 +424,6 @@ void MainWindow::onReadyToStartMiner()
on_pushButton_clicked();
}


void MainWindow::onHelp()
{
on_pushButtonHelp_clicked();
Expand All @@ -436,7 +434,6 @@ void MainWindow::on_checkBoxOnlyShare_clicked(bool checked)
_process->setShareOnly(checked);
}


void MainWindow::on_pushButtonHelp_clicked()
{
helpDialog* helpdial = new helpDialog(_settings, this);
Expand All @@ -449,9 +446,6 @@ void MainWindow::on_spinBoxDelayNoHash_valueChanged(int arg1)
_process->setDelayBeforeNoHash(arg1);
}




autoStart::autoStart(QObject *pParent)
{
}
Expand Down Expand Up @@ -502,10 +496,10 @@ void MainWindow::onGPUInfo(unsigned int gpucount

}


maxGPUThread::maxGPUThread(QObject *pParent)
maxGPUThread::maxGPUThread(QObject * /*pParent*/)
{


}

void maxGPUThread::run()
Expand Down Expand Up @@ -553,7 +547,6 @@ void MainWindow::on_pushButtonOC_clicked()
nvOCDialog* dlg = new nvOCDialog(_nvapi, _settings, this);
dlg->exec();
delete dlg;

}

void MainWindow::on_checkBoxBlinkLED_clicked(bool checked)
Expand Down Expand Up @@ -614,7 +607,6 @@ void MainWindow::on_pushButtonShowHideLog_clicked(bool checked)

void MainWindow::on_pushButtonDisplayPoolStats_clicked()
{

if(!_nano)
{
_nano = new nanopoolAPI(ui->lineEditAccount->text(), this);
Expand Down
2 changes: 1 addition & 1 deletion mainwindow.h
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ class maxGPUThread : public QThread
{
Q_OBJECT
public:
maxGPUThread(QObject* pParent = Q_NULLPTR);
maxGPUThread(QObject* = Q_NULLPTR);

void run();

Expand Down

0 comments on commit 54fbde2

Please sign in to comment.