Build fix on QMenuBar

Reviewed-By: gabi
Merge-Request: 916
(cherry picked from commit ea585d567bf0970c57e31846da044295d80774ba)
This commit is contained in:
Thierry Bastian 2011-04-14 14:12:56 +02:00 committed by Olivier Goffart
parent 4bfcb2febe
commit 95d7a4e8ea
2 changed files with 1 additions and 3 deletions

View File

@ -441,7 +441,7 @@ void QMenuBarPrivate::calcActionRects(int max_width, int start) const
QSize sz;
//calc what I think the size is..
i f(action->isSeparator()) {
if (action->isSeparator()) {
if (style->styleHint(QStyle::SH_DrawMenuBarSeparator, 0, q))
separator = i;
continue; //we don't really position these!

View File

@ -120,12 +120,10 @@ void QMenuBarImpl::actionEvent(QActionEvent *e)
void QMenuBarImpl::handleReparent(QWidget *oldParent, QWidget *newParent, QWidget *oldWindow, QWidget *newWindow)
{
#ifdef Q_WS_X11
Q_UNUSED(oldParent)
Q_UNUSED(newParent)
Q_UNUSED(oldWindow)
Q_UNUSED(newWindow)
#endif
#ifdef Q_WS_MAC
if (isNativeMenuBar() && !macWidgetHasNativeMenubar(newParent)) {