diff options
Diffstat (limited to 'systemsettings/mainwindow.cpp')
-rw-r--r-- | systemsettings/mainwindow.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/systemsettings/mainwindow.cpp b/systemsettings/mainwindow.cpp index a06c69c..866af19 100644 --- a/systemsettings/mainwindow.cpp +++ b/systemsettings/mainwindow.cpp @@ -180,7 +180,9 @@ void MainWindow::buildActions() kdDebug() << "relpath is :" << group->relPath() << endl; } } - pageActions.at(0)->setChecked(true); + if (pageActions.at(0)) { + pageActions.at(0)->setChecked(true); + } } void MainWindow::aboutCurrentModule() |