Revert "CSignalBox: Set current tuner as the default frontend"

This reverts commit c83f195637.

Conflicts:
	src/gui/components/cc_frm_signalbars.h
This commit is contained in:
svenhoefer
2016-09-28 21:12:32 +02:00
parent aaaa9745a7
commit 59ac9e57e1
2 changed files with 2 additions and 3 deletions

View File

@@ -29,7 +29,6 @@
#include <global.h>
#include <neutrino.h>
#include <zapit/femanager.h>
#include "cc_frm_signalbars.h"
#include <sstream>
@@ -256,7 +255,7 @@ CSignalBox::CSignalBox(const int& xpos, const int& ypos, const int& w, const int
initVarSigBox();
vertical = vert;
sbx_frontend = (frontend_ref == NULL) ? CFEManager::getInstance()->getLiveFE() : frontend_ref;
sbx_frontend = frontend_ref;
x = xpos;
y = ypos;
width = w;

View File

@@ -291,7 +291,7 @@ class CSignalBox : public CComponentsForm, public CCTextScreen
public:
///class constructor for signal noise ratio.
CSignalBox(const int& xpos, const int& ypos, const int& w, const int& h, CFrontend *frontend_ref = NULL, const bool vertical = true, CComponentsForm *parent = NULL, const std::string& sig_name = "SIG", const std::string& snr_name = "SNR" );
CSignalBox(const int& xpos, const int& ypos, const int& w, const int& h, CFrontend *frontend_ref, const bool vertical = true, CComponentsForm *parent = NULL, const std::string& sig_name = "SIG", const std::string& snr_name = "SNR" );
///returns the signal object, type = CSignalBar*
CSignalBar* getScaleObject(){return sbar;};