Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

kconfig: qconf: convert the last old connection syntax to Qt5 style

Commit a2574c12df0d ("kconfig: qconf: convert to Qt5 new signal/slot
connection syntax") converted most of the old string-based connections,
but one more instance still remains. Convert it to the new style.

Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>

+3 -1
+3 -1
scripts/kconfig/qconf.cc
··· 1475 1475 connect(helpText, &ConfigInfoView::menuSelected, 1476 1476 this, &ConfigMainWindow::setMenuLink); 1477 1477 1478 + connect(configApp, &QApplication::aboutToQuit, 1479 + this, &ConfigMainWindow::saveSettings); 1480 + 1478 1481 conf_read(NULL); 1479 1482 1480 1483 QString listMode = configSettings->value("/listMode", "symbol").toString(); ··· 1866 1863 v = new ConfigMainWindow(); 1867 1864 1868 1865 //zconfdump(stdout); 1869 - configApp->connect(configApp, SIGNAL(aboutToQuit()), v, SLOT(saveSettings())); 1870 1866 1871 1867 v->show(); 1872 1868 configApp->exec();