diff options
Diffstat (limited to 'src/guichan/widgets/tabbedarea.cpp')
-rw-r--r-- | src/guichan/widgets/tabbedarea.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/guichan/widgets/tabbedarea.cpp b/src/guichan/widgets/tabbedarea.cpp index fb6619bed..a4179db5e 100644 --- a/src/guichan/widgets/tabbedarea.cpp +++ b/src/guichan/widgets/tabbedarea.cpp @@ -160,8 +160,7 @@ namespace gcn int TabbedArea::getSelectedTabIndex() const { - unsigned int i; - for (i = 0; i < mTabs.size(); i++) + for (unsigned int i = 0; i < mTabs.size(); i++) { if (mTabs[i].first == mSelectedTab) return i; |