mirror of
https://github.com/overte-org/overte.git
synced 2025-04-20 11:45:36 +02:00
change increment operator
This commit is contained in:
parent
af95741a7e
commit
4c2823b42d
1 changed files with 1 additions and 1 deletions
|
@ -44,7 +44,7 @@ void Bookmarks::setupMenus(Menu* menubar, MenuWrapper* menu) {
|
|||
void Bookmarks::deleteBookmark() {
|
||||
QStringList bookmarkList;
|
||||
QList<QAction*> menuItems = _bookmarksMenu->actions();
|
||||
for (int i = 0; i < menuItems.count(); i += 1) {
|
||||
for (int i = 0; i < menuItems.count(); ++i) {
|
||||
bookmarkList.append(menuItems[i]->text());
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue