From: Juho Vähä-Herttua Date: Thu, 29 Jul 2010 20:22:31 +0000 (+0300) Subject: Qt: Remove an ifdef, no one knows what it should be doing X-Git-Tag: 1.2.0-pre1~5613 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=db6104c7f94c9da5a3dbcfcda5a03757d32d51fa;p=vlc Qt: Remove an ifdef, no one knows what it should be doing Signed-off-by: Jean-Baptiste Kempf --- diff --git a/modules/gui/qt4/util/qvlcframe.hpp b/modules/gui/qt4/util/qvlcframe.hpp index 6bb960fccc..ec968b64d3 100644 --- a/modules/gui/qt4/util/qvlcframe.hpp +++ b/modules/gui/qt4/util/qvlcframe.hpp @@ -101,11 +101,7 @@ class QVLCTools class QVLCFrame : public QWidget { public: -#ifdef __APPLE__ - QVLCFrame( intf_thread_t *_p_intf ) : QWidget( NULL, Qt::Window ), p_intf( _p_intf ) -#else QVLCFrame( intf_thread_t *_p_intf ) : QWidget( NULL ), p_intf( _p_intf ) -#endif {}; virtual ~QVLCFrame() {};