mirror of
https://github.com/overte-org/overte.git
synced 2025-06-22 23:40:19 +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() {
|
void Bookmarks::deleteBookmark() {
|
||||||
QStringList bookmarkList;
|
QStringList bookmarkList;
|
||||||
QList<QAction*> menuItems = _bookmarksMenu->actions();
|
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());
|
bookmarkList.append(menuItems[i]->text());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue