Skip to content

Commit

Permalink
qucs-lib: silence warning about unused variable
Browse files Browse the repository at this point in the history
  • Loading branch information
guitorri committed Oct 19, 2015
1 parent 8afc404 commit 1e740ac
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions qucs/qucs-lib/qucslib.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -233,6 +233,7 @@ void QucsLib::slotQuit()
tmp = y(); // ... set them correctly before closing the ...
tmp = width(); // dialog !!! Otherwise the frame of the window ...
tmp = height(); // will not be recognized (a X11 problem).
Q_UNUSED(tmp);

qApp->quit();
}
Expand All @@ -245,6 +246,7 @@ void QucsLib::closeEvent(QCloseEvent *Event)
tmp = y(); // ... set them correctly before closing the ...
tmp = width(); // dialog !!! Otherwise the frame of the window ...
tmp = height(); // will not be recognized (a X11 problem).
Q_UNUSED(tmp);

Event->accept();
}
Expand Down

0 comments on commit 1e740ac

Please sign in to comment.