@@ -20,7 +20,10 @@ class PaneATSC : public GroupSetting
20
20
public:
21
21
PaneATSC (const QString &target, StandardSetting *setting) :
22
22
m_atscTable (new ScanFrequencyTable()),
23
- m_atscModulation (new ScanATSCModulation())
23
+ m_atscModulation (new ScanATSCModulation()),
24
+ m_transportStart (new TransMythUIComboBoxSetting()),
25
+ m_transportEnd (new TransMythUIComboBoxSetting()),
26
+ m_transportCount (new GroupSetting())
24
27
{
25
28
setVisible (false );
26
29
@@ -30,15 +33,12 @@ class PaneATSC : public GroupSetting
30
33
connect (m_atscModulation, qOverload<const QString&>(&StandardSetting::valueChanged),
31
34
this , &PaneATSC::ModulationChanged);
32
35
33
- m_transportStart = new TransMythUIComboBoxSetting ();
34
36
m_transportStart->setLabel (tr (" First Channel" ));
35
37
m_transportStart->setHelpText (tr (" Start scanning at this channel." ));
36
38
37
- m_transportEnd = new TransMythUIComboBoxSetting ();
38
39
m_transportEnd->setLabel (tr (" Last Channel" ));
39
40
m_transportEnd->setHelpText (tr (" Stop scanning after this channel." ));
40
41
41
- m_transportCount = new GroupSetting ();
42
42
m_transportCount->setLabel (tr (" Channel Count" ));
43
43
m_transportCount->setHelpText (tr (" Total number of channels to scan." ));
44
44
m_transportCount->setReadOnly (true );
0 commit comments