summaryrefslogtreecommitdiffstats
path: root/src/gui/widgets
diff options
context:
space:
mode:
authorJason Barron <jbarron@trolltech.com>2009-07-07 09:28:59 (GMT)
committerJason Barron <jbarron@trolltech.com>2009-07-07 09:28:59 (GMT)
commit6aa3624edecb4ab0ad2e3d0e189254a5b561672d (patch)
tree1dbef21f4f0ad465c09596b2a764de81f7925e88 /src/gui/widgets
parent197df24edfe095a10e2bf65116796e027fea44e2 (diff)
downloadQt-6aa3624edecb4ab0ad2e3d0e189254a5b561672d.zip
Qt-6aa3624edecb4ab0ad2e3d0e189254a5b561672d.tar.gz
Qt-6aa3624edecb4ab0ad2e3d0e189254a5b561672d.tar.bz2
Compile fixes for S60 + 4.6.
Update some things after pulling in master-stable to get things compiling again.
Diffstat (limited to 'src/gui/widgets')
-rw-r--r--src/gui/widgets/qmenu.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/widgets/qmenu.cpp b/src/gui/widgets/qmenu.cpp
index fd69a52..079a3b5 100644
--- a/src/gui/widgets/qmenu.cpp
+++ b/src/gui/widgets/qmenu.cpp
@@ -1783,7 +1783,7 @@ void QMenu::popup(const QPoint &p, QAction *atAction)
atAction = d->defaultAction;
// TODO: This works for first level menus, not yet sub menus
} else {
- foreach (QAction *action, d->actionList)
+ foreach (QAction *action, d->actions)
if (action->isEnabled()) {
atAction = action;
break;