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
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() {};
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