Commit cceacadf authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Fix the dialogs problem on Mac.

parent be11a013
...@@ -118,8 +118,12 @@ class QVLCTools ...@@ -118,8 +118,12 @@ class QVLCTools
class QVLCFrame : public QWidget class QVLCFrame : public QWidget
{ {
public: 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 ) QVLCFrame( intf_thread_t *_p_intf ) : QWidget( NULL ), p_intf( _p_intf )
{ }; #endif
{};
virtual ~QVLCFrame() {}; virtual ~QVLCFrame() {};
void toggleVisible() void toggleVisible()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment