Skip to content

Commit

Permalink
Remove some commented out variables and connect() calls.
Browse files Browse the repository at this point in the history
  • Loading branch information
linuxdude42 committed Oct 9, 2020
1 parent e02f65d commit 011f9a5
Show file tree
Hide file tree
Showing 6 changed files with 0 additions and 14 deletions.
1 change: 0 additions & 1 deletion mythplugins/mythmusic/mythmusic/smartplaylist.cpp
Expand Up @@ -2000,7 +2000,6 @@ bool SmartPLDateDialog::Create(void)

connect(m_fixedRadio, &MythUICheckBox::toggled, this, &SmartPLDateDialog::fixedCheckToggled);
connect(m_nowRadio, &MythUICheckBox::toggled, this, &SmartPLDateDialog::nowCheckToggled);
//connect(addDaysCheck, SIGNAL(toggled(bool)), this, SLOT(addDaysCheckToggled(bool)));
connect(m_addDaysSpin, &MythUIButtonList::itemSelected,
this, &SmartPLDateDialog::valueChanged);
connect(m_daySpin, &MythUIButtonList::itemSelected,
Expand Down
2 changes: 0 additions & 2 deletions mythtv/libs/libmyth/backendselect.cpp
Expand Up @@ -77,12 +77,10 @@ bool BackendSelection::Create(void)
m_saveButton = dynamic_cast<MythUIButton*>(GetChild("save"));
m_cancelButton = dynamic_cast<MythUIButton*>(GetChild("cancel"));
m_manualButton = dynamic_cast<MythUIButton*>(GetChild("manual"));
//m_searchButton = dynamic_cast<MythUIButton*>(GetChild("search"));

connect(m_backendList, &MythUIButtonList::itemClicked,
this, qOverload<MythUIButtonListItem *>(&BackendSelection::Accept));

// connect(m_searchButton, SIGNAL(clicked()), SLOT(Search()));
connect(m_manualButton, &MythUIButton::Clicked, this, &BackendSelection::Manual);
connect(m_cancelButton, &MythUIButton::Clicked, this, &BackendSelection::Cancel);
connect(m_saveButton, &MythUIButton::Clicked,
Expand Down
1 change: 0 additions & 1 deletion mythtv/libs/libmyth/backendselect.h
Expand Up @@ -81,7 +81,6 @@ class BackendSelection : public MythScreenType
MythUIButton *m_manualButton {nullptr};
MythUIButton *m_saveButton {nullptr};
MythUIButton *m_cancelButton {nullptr};
//MythUIButton *m_searchButton {nullptr};

QString m_pinCode;
QString m_usn;
Expand Down
6 changes: 0 additions & 6 deletions mythtv/libs/libmythtv/videosource.cpp
Expand Up @@ -1967,12 +1967,6 @@ VBoxConfigurationGroup::VBoxConfigurationGroup
a_cardtype.addTargetedChild("VBOX", m_cardTuner);
a_cardtype.addTargetedChild("VBOX", new SignalTimeout(m_parent, 7000, 1000));
a_cardtype.addTargetedChild("VBOX", new ChannelTimeout(m_parent, 10000, 1750));
// TransButtonSetting *buttonRecOpt = new TransButtonSetting();
// buttonRecOpt->setLabel(tr("Recording Options"));
// addChild(buttonRecOpt);

// connect(buttonRecOpt, SIGNAL(pressed()),
// this, SLOT( VBoxExtraPanel()));

connect(m_cardIp, &VBoxIP::NewIP,
m_deviceId, &VBoxDeviceID::SetIP);
Expand Down
3 changes: 0 additions & 3 deletions mythtv/libs/libmythtv/videosource.h
Expand Up @@ -685,9 +685,6 @@ class DVBConfigurationGroup : public GroupSetting
DVBCardType *m_cardType {nullptr};
SignalTimeout *m_signalTimeout {nullptr};
ChannelTimeout *m_channelTimeout {nullptr};
#if 0
TransButtonSetting *m_buttonAnalog {nullptr};
#endif
DVBTuningDelay *m_tuningDelay {nullptr};
DiSEqCDevTree *m_diseqcTree {nullptr};
DeviceTree *m_diseqcBtn {nullptr};
Expand Down
1 change: 0 additions & 1 deletion mythtv/libs/libmythui/mythuitextedit.cpp
Expand Up @@ -527,7 +527,6 @@ bool MythUITextEdit::keyPressEvent(QKeyEvent *event)

if (kb->Create())
{
//connect(kb, SIGNAL(keyPress(QString)), SLOT(keyPress(QString)));
popupStack->AddScreen(kb);
}
else
Expand Down

0 comments on commit 011f9a5

Please sign in to comment.