diff options
author | gregory guy <[email protected]> | 2020-06-13 16:36:18 +0200 |
---|---|---|
committer | gregory guy <[email protected]> | 2020-06-13 16:52:59 +0200 |
commit | 88aa431c9d79bad942de04f4b28954b428079fd1 (patch) | |
tree | 821d0a067be41df5bbe48e61027820e9c3fcb2b0 /src/part | |
parent | 12b478cefdf1789828dbcd677d409cf8bad654ca (diff) | |
download | codeine-88aa431c9d79bad942de04f4b28954b428079fd1.tar.gz codeine-88aa431c9d79bad942de04f4b28954b428079fd1.zip |
Add support for xinelib-1.2, patch is from [email protected]
taken from the kde3 OpenSuse repo, package kde3-codeine-1.0.1-52.73.src.rpm
http://download.opensuse.org/repositories/KDE:/KDE3/openSUSE_Tumbleweed/src
Signed-off-by: gregory guy <[email protected]>
Diffstat (limited to 'src/part')
-rw-r--r-- | src/part/videoWindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/part/videoWindow.cpp b/src/part/videoWindow.cpp index 97b87cd..53cd0dd 100644 --- a/src/part/videoWindow.cpp +++ b/src/part/videoWindow.cpp @@ -176,7 +176,7 @@ bool VideoWindow::x11Event( XEvent *e ) { if( e->type == Expose && e->xexpose.count == 0 ) { - xine_gui_send_vo_data( m_stream, XINE_GUI_SEND_EXPOSE_EVENT, e ); + xine_port_send_gui_data( m_videoPort, XINE_GUI_SEND_EXPOSE_EVENT, e ); return true; } |