Changeset 3c68fe377b6fc76292e5bcf847325432044aac54

Show
Ignore:
Timestamp:
25/06/08 20:35:55 (4 months ago)
Author:
Jean-Baptiste Kempf <jb@videolan.org>
git-committer:
Jean-Baptiste Kempf <jb@videolan.org> 1214418955 -0700
git-parent:

[3d6595b148de9956d99c98215abcb53c9d77baad]

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

Break compilation on Qt4.2

Man QEventLoop and man QxtSignalWait? can help fix that.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • modules/gui/qt4/components/interface_widgets.cpp

    r8313bce r3c68fe3  
    7676 
    7777    /* The core can ask through a callback to show the video. */ 
     78#if HAS_QT43 
    7879    connect( this, SIGNAL(askVideoWidgetToShow( unsigned int, unsigned int)), 
    7980             this, SLOT(SetSizing(unsigned int, unsigned int )), 
    8081             Qt::BlockingQueuedConnection ); 
     82#else 
     83#error This is broken. Fix it with a QEventLoop with a processEvents ()  
     84    connect( this, SIGNAL(askVideoWidgetToShow( unsigned int, unsigned int)), 
     85             this, SLOT(SetSizing(unsigned int, unsigned int )) ); 
     86#endif 
     87 
     88 
    8189} 
    8290