diff options
author | Frédéric Brière <fbriere@fbriere.net> | 2016-10-01 13:11:23 -0400 |
---|---|---|
committer | Frédéric Brière <fbriere@fbriere.net> | 2016-10-03 20:36:17 -0400 |
commit | 77804f2cf9fdac04623411e85d2133ffdbf1d552 (patch) | |
tree | cff0131cb988cec7bb7011480d5d421463334fe4 | |
parent | a06681c29a66b7213eef0261d689230ee7515e5e (diff) | |
download | twinkle-77804f2cf9fdac04623411e85d2133ffdbf1d552.tar twinkle-77804f2cf9fdac04623411e85d2133ffdbf1d552.tar.gz twinkle-77804f2cf9fdac04623411e85d2133ffdbf1d552.tar.lz twinkle-77804f2cf9fdac04623411e85d2133ffdbf1d552.tar.xz twinkle-77804f2cf9fdac04623411e85d2133ffdbf1d552.zip |
Fix double incrementation in SelectUserForm::validate()
-rw-r--r-- | src/gui/selectuserform.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/gui/selectuserform.cpp b/src/gui/selectuserform.cpp index 96c9eaa..6568114 100644 --- a/src/gui/selectuserform.cpp +++ b/src/gui/selectuserform.cpp @@ -133,7 +133,6 @@ void SelectUserForm::validate() not_selected_list.push_back(phone-> ref_user_profile(item->text().toStdString())); } - i++; } emit (selection(selected_list)); |