Think I've tracked down the fist problem,  TransportScanIterm.complete
was not being initialised.

On 26/06/05, John Pullan <[EMAIL PROTECTED]> wrote:
> On 26/06/05, Daniel Kristjansson <[EMAIL PROTECTED]> wrote:
> > On Sun, 2005-06-26 at 16:18 +0200, Torbjörn Jansson wrote:
> >
> > > Channel scanning from mythtv-setup seems to be broken now, if i choose to 
> > > do
> > > a "full scan of existing transports" it gets stuck at 6%.
> > > And when i press ESC to cancel i get back to the the page where you start
> > > scanning and Scan Type combo box says: "Failed to open the card"
> >
> > Hmm, I'll look at this.
> >
> 
> I think this should sort out the Escape issue - What was happening was
> that the scan was
> opening the card to scan, but the UI was then trying to look at the
> card to work out what type
> it was. This only showed up if you actually went back to the start screen
> --
> John
> 
> 
> 


-- 
John
Index: frequencytables.cpp
===================================================================
--- frequencytables.cpp	(revision 6716)
+++ frequencytables.cpp	(working copy)
@@ -8,7 +8,7 @@
 TransportScanItem::TransportScanItem()
     : mplexid(-1),      standard("dvb"),
       FriendlyName(""), SourceID(0),         UseTimer(false),
-      scanning(false),  timeoutTune(ATSC_TUNINGTIMEOUT)
+      scanning(false),  timeoutTune(ATSC_TUNINGTIMEOUT), complete(false)
 { 
     bzero(freq_offsets, sizeof(int)*3);
 }
@@ -18,7 +18,7 @@
                                      const QString &fn)
     : mplexid(_mplexid), standard("dvb"),
       FriendlyName(fn),  SourceID(sourceid), UseTimer(false),
-      scanning(false),   timeoutTune(ATSC_TUNINGTIMEOUT)
+      scanning(false),   timeoutTune(ATSC_TUNINGTIMEOUT), complete(false)
 {
     bzero(freq_offsets, sizeof(int)*3);
 }
@@ -31,7 +31,7 @@
                                      const FrequencyTable &ft) :
     mplexid(-1),        standard(std),       FriendlyName(fn),
     friendlyNum(fnum),  SourceID(sourceid),  UseTimer(false),
-    scanning(false)
+    scanning(false), complete(false)
 {
     bzero(freq_offsets, sizeof(int)*3);
 
_______________________________________________
mythtv-dev mailing list
[email protected]
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-dev

Reply via email to