diff options
author | Slávek Banko <[email protected]> | 2016-10-09 16:09:13 +0200 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2016-10-09 16:09:24 +0200 |
commit | f060539d8f221d14481048f80b1c741a9c1156bb (patch) | |
tree | 45d85b7d7d26419d12db3ee29093d8f60a81a50a /src | |
parent | 9467ac6593b501e54e7db716080620d1d545135f (diff) | |
download | k9copy-f060539d8f221d14481048f80b1c741a9c1156bb.tar.gz k9copy-f060539d8f221d14481048f80b1c741a9c1156bb.zip |
Fix FTBFS on missing return values
This resolves bug 2710
Signed-off-by: Slávek Banko <[email protected]>
(cherry picked from commit e4340cf7aa0b6fbd604bdd7c3e66768508a589aa)
Diffstat (limited to 'src')
-rwxr-xr-x | src/kviewmpeg2.cpp | 2 | ||||
-rwxr-xr-x | src/kviewmpeg2.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/kviewmpeg2.cpp b/src/kviewmpeg2.cpp index 393a008..419d1eb 100755 --- a/src/kviewmpeg2.cpp +++ b/src/kviewmpeg2.cpp @@ -190,7 +190,7 @@ void kViewMPEG2::bPlayClick() { } -int kViewMPEG2::open (k9DVD *_dvd,k9DVDTitle * title,int chapter) { +void kViewMPEG2::open (k9DVD *_dvd,k9DVDTitle * title,int chapter) { m_player.open(_dvd->getdvd()->getDvd(), _dvd->getDevice(),title,chapter); } diff --git a/src/kviewmpeg2.h b/src/kviewmpeg2.h index 1330a0d..4383820 100755 --- a/src/kviewmpeg2.h +++ b/src/kviewmpeg2.h @@ -87,7 +87,7 @@ protected: void resizeEvent ( TQResizeEvent * ); public slots: // Public slots /** No descriptions */ - int open (k9DVD *_dvd,k9DVDTitle * title,int chapter); + void open (k9DVD *_dvd,k9DVDTitle * title,int chapter); void drawPixmap( TQImage *image); void drawppm(uchar *_buf,int _width,int _height,int _len); void setError(const TQString & err); |