kconfig qconf: fix -Wall compiler warnings
[deliverable/linux.git] / scripts / kconfig / qconf.cc
index 5d0fd38b089b937614dee19073ec9a2657b26d22..2bd6ed021aac9cc69fb33949416f89ce5a50faf8 100644 (file)
@@ -920,7 +920,7 @@ void ConfigView::updateListAll(void)
 }
 
 ConfigInfoView::ConfigInfoView(QWidget* parent, const char *name)
-       : Parent(parent, name), menu(0), sym(0)
+       : Parent(parent, name), sym(0), menu(0)
 {
        if (name) {
                configSettings->beginGroup(name);
@@ -1524,6 +1524,8 @@ void ConfigMainWindow::setMenuLink(struct menu *menu)
        case fullMode:
                list = configList;
                break;
+       default:
+               break;
        }
 
        if (list) {
@@ -1673,6 +1675,9 @@ void ConfigMainWindow::saveSettings(void)
        case fullMode :
                entry = "full";
                break;
+
+       default:
+               break;
        }
        configSettings->writeEntry("/listMode", entry);
 
This page took 0.025997 seconds and 5 git commands to generate.