aboutsummaryrefslogtreecommitdiff
path: root/xbmc/dialogs/GUIDialogSelect.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'xbmc/dialogs/GUIDialogSelect.cpp')
-rw-r--r--xbmc/dialogs/GUIDialogSelect.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/xbmc/dialogs/GUIDialogSelect.cpp b/xbmc/dialogs/GUIDialogSelect.cpp
index a31660ebe0..736eb1a17c 100644
--- a/xbmc/dialogs/GUIDialogSelect.cpp
+++ b/xbmc/dialogs/GUIDialogSelect.cpp
@@ -276,7 +276,7 @@ void CGUIDialogSelect::SetSelected(std::vector<int> selectedIndexes)
if (selectedIndexes.empty())
return;
- for (std::vector<int>::const_iterator it = selectedIndexes.begin(); it != selectedIndexes.end(); it++)
+ for (std::vector<int>::const_iterator it = selectedIndexes.begin(); it != selectedIndexes.end(); ++it)
SetSelected(*it);
}
@@ -285,7 +285,7 @@ void CGUIDialogSelect::SetSelected(const std::vector<std::string> &selectedLabel
if (selectedLabels.empty())
return;
- for (std::vector<std::string>::const_iterator it = selectedLabels.begin(); it != selectedLabels.end(); it++)
+ for (std::vector<std::string>::const_iterator it = selectedLabels.begin(); it != selectedLabels.end(); ++it)
SetSelected(*it);
}