From a862167d324ce654af1abd1c7268f6af9d54aba2 Mon Sep 17 00:00:00 2001 From: BPanther Date: Tue, 19 Oct 2021 22:35:24 +0200 Subject: [PATCH] fix unused variables Origin commit data ------------------ Branch: ni/coolstream Commit: https://github.com/neutrino-images/ni-neutrino/commit/8b2b66592c1adbcda98e8e24587a0c66c7c7d625 Author: BPanther Date: 2021-10-19 (Tue, 19 Oct 2021) ------------------ No further description and justification available within origin commit message! ------------------ This commit was generated by Migit --- src/gui/quadpip_setup.cpp | 4 ++-- src/gui/quadpip_setup.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/gui/quadpip_setup.cpp b/src/gui/quadpip_setup.cpp index 50a2f0cb3..c82bdb73e 100644 --- a/src/gui/quadpip_setup.cpp +++ b/src/gui/quadpip_setup.cpp @@ -279,7 +279,7 @@ CQuadPiPSetupSelectChannelWidget::~CQuadPiPSetupSelectChannelWidget() { } -int CQuadPiPSetupSelectChannelWidget::InitZapitChannelHelper(CZapitClient::channelsMode /*mode*/) +int CQuadPiPSetupSelectChannelWidget::InitZapitChannelHelper() { std::vector toDelete; CMenuWidget mctv(LOCALE_TIMERLIST_BOUQUETSELECT, NEUTRINO_ICON_SETTINGS); @@ -331,7 +331,7 @@ int CQuadPiPSetupSelectChannelWidget::exec(CMenuTarget *parent, const std::strin if (actionKey.find("window_") != std::string::npos) { wn = atoi(actionKey.substr(7, 1).c_str()) - 1; - return InitZapitChannelHelper(CZapitClient::MODE_TV); + return InitZapitChannelHelper(); } else if (strncmp(actionKey.c_str(), "ZCT:", 4) == 0) { diff --git a/src/gui/quadpip_setup.h b/src/gui/quadpip_setup.h index b469cee52..d60968f6f 100644 --- a/src/gui/quadpip_setup.h +++ b/src/gui/quadpip_setup.h @@ -48,7 +48,7 @@ class CQuadPiPSetupNotifier : public CChangeObserver class CQuadPiPSetupSelectChannelWidget : public CMenuWidget { private: - int InitZapitChannelHelper(CZapitClient::channelsMode mode); + int InitZapitChannelHelper(); public: CQuadPiPSetupSelectChannelWidget();