[vlc-commits] Qt: fix prev commitw
Francois Cartegnie
git at videolan.org
Tue Jun 26 17:38:00 CEST 2012
vlc | branch: master | Francois Cartegnie <fcvlcdev at free.fr> | Tue Jun 26 17:37:30 2012 +0200| [6f1af24d75fd36050d8f3a1a4c7369067e90898f] | committer: Francois Cartegnie
Qt: fix prev commitw
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=6f1af24d75fd36050d8f3a1a4c7369067e90898f
---
modules/gui/qt4/menus.cpp | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/modules/gui/qt4/menus.cpp b/modules/gui/qt4/menus.cpp
index 3969de1..d736ea4 100644
--- a/modules/gui/qt4/menus.cpp
+++ b/modules/gui/qt4/menus.cpp
@@ -769,8 +769,8 @@ QMenu *VLCMenuBar::HelpMenu( QWidget *parent )
*****************************************************************************/
#define POPUP_BOILERPLATE \
static QMenu* menu = NULL; \
- if ( menu ) menu->deleteLater(); \ /* Ensure it is deleted after processing events */
- menu = NULL; \ /* or we might crash on an incoming mouseup event */
+ if ( menu ) menu->deleteLater(); /* Ensure it is deleted after processing events */\
+ menu = NULL; /* or we might crash on an incoming mouseup event */\
if( !show ) \
return; \
QVector<vlc_object_t *> objects; \
More information about the vlc-commits
mailing list