Changeset cceacadfbd5ec1104c9cb4a37901f29f1d8596df

Show
Ignore:
Timestamp:
15/03/08 03:31:50 (9 months ago)
Author:
Jean-Baptiste Kempf <jb@videolan.org>
git-committer:
Jean-Baptiste Kempf <jb@videolan.org> 1205548310 -0700
git-parent:

[be11a0133ff77434b9ede817bc827885eae1daab]

git-author:
Jean-Baptiste Kempf <jb@videolan.org> 1205548310 -0700
Message:

Fix the dialogs problem on Mac.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • modules/gui/qt4/util/qvlcframe.hpp

    r894f52c rcceacad  
    119119{ 
    120120public: 
     121#ifdef __APPLE__ 
     122    QVLCFrame( intf_thread_t *_p_intf ) : QWidget( NULL, Qt::Window ), p_intf( _p_intf ) 
     123#else 
    121124    QVLCFrame( intf_thread_t *_p_intf ) : QWidget( NULL ), p_intf( _p_intf ) 
    122     {    }; 
     125#endif 
     126    {}; 
    123127    virtual ~QVLCFrame()   {}; 
    124128