diff options
author | Mark Loeser <halcy0n@gentoo.org> | 2006-06-06 03:36:50 +0000 |
---|---|---|
committer | Mark Loeser <halcy0n@gentoo.org> | 2006-06-06 03:36:50 +0000 |
commit | 49f0aa0f04f8fa4b08644cee15bf191a81bab1bb (patch) | |
tree | d2b0b0e853b4202db894364cf5672119374e4a3c /media-plugins/mythvideo/files | |
parent | Add patch to fix compilation with gcc-4.1 by Stephen Bridges <widget AT stdin... (diff) | |
download | gentoo-2-49f0aa0f04f8fa4b08644cee15bf191a81bab1bb.tar.gz gentoo-2-49f0aa0f04f8fa4b08644cee15bf191a81bab1bb.tar.bz2 gentoo-2-49f0aa0f04f8fa4b08644cee15bf191a81bab1bb.zip |
Add patch to fix compilation with gcc-4.1 by Stephen Bridges <widget AT stdin DOT co DOT uk>; bug #132453
(Portage version: 2.1_rc3-r2)
Diffstat (limited to 'media-plugins/mythvideo/files')
-rw-r--r-- | media-plugins/mythvideo/files/mythvideo-0.19-gcc41.patch | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/media-plugins/mythvideo/files/mythvideo-0.19-gcc41.patch b/media-plugins/mythvideo/files/mythvideo-0.19-gcc41.patch new file mode 100644 index 000000000000..8a393f5d1d05 --- /dev/null +++ b/media-plugins/mythvideo/files/mythvideo-0.19-gcc41.patch @@ -0,0 +1,22 @@ +--- mythplugins-0.19/mythvideo/mythvideo/videoselected.h.orig 2006-05-06 10:42:17.000000000 +0100 ++++ mythplugins-0.19/mythvideo/mythvideo/videoselected.h 2006-05-06 10:42:32.000000000 +0100 +@@ -35,7 +35,7 @@ + VideoSelected(VideoList *lvideolist, + MythMainWindow *parent, const char *name = 0, int index = 0); + ~VideoSelected(); +- void VideoSelected::processEvents() { qApp->processEvents(); } ++ void processEvents() { qApp->processEvents(); } + + + protected slots: +--- mythplugins-0.19/mythvideo/mythvideo/videomanager.h.orig 2006-05-06 10:38:53.000000000 +0100 ++++ mythplugins-0.19/mythvideo/mythvideo/videomanager.h 2006-05-06 10:39:23.000000000 +0100 +@@ -30,7 +30,7 @@ + public: + VideoManager(MythMainWindow *parent, const char *name = 0); + ~VideoManager(void); +- void VideoManager::processEvents() { qApp->processEvents(); } ++ void processEvents() { qApp->processEvents(); } + + public slots: + void slotManualIMDB(); |