Skip to content

Commit dbd0cc0

Browse files
committed
Move the implementation of SetOption into .cpp
This hopefully will once again allow Windows build to compile correctly.
1 parent 77618fd commit dbd0cc0

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

mythtv/libs/libmythtv/NuppelVideoRecorder.cpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -352,6 +352,11 @@ void NuppelVideoRecorder::SetOption(const QString &opt, int value)
352352
V4LRecorder::SetOption(opt, value);
353353
}
354354

355+
void NuppelVideoRecorder::SetOption(const QString &name, const QString &value)
356+
{
357+
V4LRecorder::SetOption(name, value);
358+
}
359+
355360
void NuppelVideoRecorder::SetOptionsFromProfile(RecordingProfile *profile,
356361
const QString &videodev,
357362
const QString &audiodev,

mythtv/libs/libmythtv/NuppelVideoRecorder.h

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,7 @@ class MTV_PUBLIC NuppelVideoRecorder : public V4LRecorder, public CC608Input
7777
~NuppelVideoRecorder();
7878

7979
void SetOption(const QString &name, int value);
80-
void SetOption(const QString &name, const QString &value)
81-
{ V4LRecorder::SetOption(name, value); }
80+
void SetOption(const QString &name, const QString &value);
8281

8382
void SetOptionsFromProfile(RecordingProfile *profile,
8483
const QString &videodev,

0 commit comments

Comments
 (0)