diff options
| author | Shaun Reich <[email protected]> | 2009-03-11 20:48:37 +0000 |
|---|---|---|
| committer | Shaun Reich <[email protected]> | 2009-03-11 20:48:37 +0000 |
| commit | 6e4711a6a831bf145443e1c3605968ec15d85317 (patch) | |
| tree | 2b829b4fa6ca4dd0f42c8d7ce9edff4387a4db3d /src | |
| parent | eba839113b100ac777c6333fd98243d8d591535a (diff) | |
Changed i++ to ++i. I accidentally did the first when I first made the recently closed tabs feature (habitual).
svn path=/trunk/KDE/kdebase/apps/; revision=938422
Diffstat (limited to 'src')
| -rw-r--r-- | src/dolphinmainwindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dolphinmainwindow.cpp b/src/dolphinmainwindow.cpp index d47996a52..2b9e5b58e 100644 --- a/src/dolphinmainwindow.cpp +++ b/src/dolphinmainwindow.cpp @@ -510,7 +510,7 @@ void DolphinMainWindow::restoreClosedTab(QAction* action) // action and the separator QList<QAction*> actions = m_recentTabsMenu->menu()->actions(); const int count = actions.size(); - for (int i = 2; i < count; i++) { + for (int i = 2; i < count; ++i) { m_recentTabsMenu->menu()->removeAction(actions.at(i)); } } else { |
