From 02ef45be75a3024df11365956e1cce6392d9103c Mon Sep 17 00:00:00 2001 From: erik Date: Mon, 29 Jan 2007 21:53:48 +0000 Subject: Each file in this commit has an issue where the initial value of a variable is assumed to be something but no initial value is given. This commit changes that by either assigning an initial value or removing the assumption on an initial value (usually the former). --- (limited to 'noncore/apps/opie-console/mainwindow.cpp') diff --git a/noncore/apps/opie-console/mainwindow.cpp b/noncore/apps/opie-console/mainwindow.cpp index aba7244..a884179 100644 --- a/noncore/apps/opie-console/mainwindow.cpp +++ b/noncore/apps/opie-console/mainwindow.cpp @@ -707,15 +707,11 @@ void MainWindow::slotFullscreen() { void MainWindow::slotScrollbarSelected(int index) { - int loc; + int loc = 0; Config cfg( "Konsole" ); cfg.setGroup("ScrollBar"); - if(index == sm_none) - { - loc = 0; - } - else if(index == sm_left) + if(index == sm_left) { loc = 1; } @@ -724,7 +720,7 @@ void MainWindow::slotScrollbarSelected(int index) loc = 2; } - cfg.writeEntry("Position", loc); + cfg.writeEntry("Position", loc); if (currentSession()) { currentSession()->emulationHandler()->setScrollbarLocation(loc); -- cgit v0.9.0.2