Solve some unreferenced parameter warnings
(C4100: unreferenced formal parameter)
This commit is contained in:
parent
d87fee05a9
commit
ecb2541a93
10 changed files with 22 additions and 3 deletions
|
@ -4,8 +4,11 @@
|
|||
|
||||
#include "citra_qt/util/clickable_label.h"
|
||||
|
||||
ClickableLabel::ClickableLabel(QWidget* parent, Qt::WindowFlags f) : QLabel(parent) {}
|
||||
ClickableLabel::ClickableLabel(QWidget* parent, Qt::WindowFlags f) : QLabel(parent) {
|
||||
Q_UNUSED(f);
|
||||
}
|
||||
|
||||
void ClickableLabel::mouseReleaseEvent(QMouseEvent* event) {
|
||||
Q_UNUSED(event);
|
||||
emit clicked();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue