diff options
| author | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2006-05-22 13:19:24 +0000 |
|---|---|---|
| committer | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2006-05-22 13:19:24 +0000 |
| commit | 961fcb6cec16091f610dec1f019d43b6096e7390 (patch) | |
| tree | f272022790a76a77a32997e20f9a7d81a80cb004 /lib/components/scan.cpp | |
| parent | 9d8d1436be9d8c9c5b79089a288b9716e4a098b9 (diff) | |
| download | enigma2-961fcb6cec16091f610dec1f019d43b6096e7390.tar.gz enigma2-961fcb6cec16091f610dec1f019d43b6096e7390.zip | |
do not ask to scan on tuner 0 when not needed
Diffstat (limited to 'lib/components/scan.cpp')
| -rw-r--r-- | lib/components/scan.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/components/scan.cpp b/lib/components/scan.cpp index c21e8f4b..5355208f 100644 --- a/lib/components/scan.cpp +++ b/lib/components/scan.cpp @@ -8,7 +8,7 @@ DEFINE_REF(eComponentScan); void eComponentScan::scanEvent(int evt) { - eDebug("scan event %d!", evt); +// eDebug("scan event %d!", evt); if (evt == eDVBScan::evtFinish) { @@ -107,7 +107,7 @@ int eComponentScan::start(int feid, int flags) std::list<ePtr<iDVBFrontendParameters> > list; - m_scan = new eDVBScan(channel); + m_scan = new eDVBScan(channel, true); m_scan->connectEvent(slot(*this, &eComponentScan::scanEvent), m_scan_event_connection); m_scan->start(m_initial, flags); |
