mirror of
https://github.com/ciphervance/supercell-wx.git
synced 2025-10-30 13:30:06 +00:00
Fixing warnings in scwx-qt
This commit is contained in:
parent
3339a40780
commit
ff58f5bcf6
15 changed files with 36 additions and 21 deletions
|
|
@ -154,7 +154,7 @@ MainWindow::MainWindow(QWidget* parent) :
|
|||
connect(qApp,
|
||||
&QApplication::focusChanged,
|
||||
this,
|
||||
[=](QWidget* old, QWidget* now) { p->HandleFocusChange(now); });
|
||||
[=](QWidget* /*old*/, QWidget* now) { p->HandleFocusChange(now); });
|
||||
connect(p->level2ProductsWidget_,
|
||||
&ui::Level2ProductsWidget::RadarProductSelected,
|
||||
this,
|
||||
|
|
@ -277,7 +277,7 @@ void MainWindowImpl::ConfigureMapLayout()
|
|||
|
||||
maps_.resize(mapCount);
|
||||
|
||||
auto MoveSplitter = [=](int pos, int index)
|
||||
auto MoveSplitter = [=](int /*pos*/, int /*index*/)
|
||||
{
|
||||
QSplitter* s = dynamic_cast<QSplitter*>(sender());
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue