Changeset 3c68fe377b6fc76292e5bcf847325432044aac54
- 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
| r8313bce |
r3c68fe3 |
|
| 76 | 76 | |
|---|
| 77 | 77 | /* The core can ask through a callback to show the video. */ |
|---|
| | 78 | #if HAS_QT43 |
|---|
| 78 | 79 | connect( this, SIGNAL(askVideoWidgetToShow( unsigned int, unsigned int)), |
|---|
| 79 | 80 | this, SLOT(SetSizing(unsigned int, unsigned int )), |
|---|
| 80 | 81 | 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 | |
|---|
| 81 | 89 | } |
|---|
| 82 | 90 | |
|---|