- miscsettings-menu: formatting code using astyle

Conflicts:
	src/gui/miscsettings_menu.cpp

Signed-off-by: Thilo Graf <dbt@novatux.de>
This commit is contained in:
svenhoefer
2021-10-20 19:31:13 +02:00
committed by Thilo Graf
parent f489052af5
commit 45cf7e0698
2 changed files with 122 additions and 116 deletions

View File

@@ -36,28 +36,32 @@
class CMiscMenue : public CMenuTarget, CChangeObserver
{
private:
enum {
enum
{
DEUTSCHLAND = 0,
NORWAY = 1,
};
CFanControlNotifier *fanNotifier;
CCpuFreqNotifier * cpuNotifier;
CSectionsdConfigNotifier* sectionsdConfigNotifier;
CCpuFreqNotifier *cpuNotifier;
CSectionsdConfigNotifier *sectionsdConfigNotifier;
//COnOffNotifier* miscNotifier;
CMenuOptionChooser * epg_save;
CMenuOptionChooser * epg_save_standby;
CMenuOptionChooser * epg_save_frequently;
CMenuOptionChooser * epg_read;
CMenuOptionChooser * epg_read_frequently;
CMenuOptionChooser * epg_scan;
CMenuOptionChooser * weather_onoff;
CMenuOptionChooser * tmdb_onoff;
CMenuOptionChooser * omdb_onoff;
CMenuOptionChooser * youtube_onoff;
CMenuOptionChooser * shoutcast_onoff;
CMenuForwarder * epg_dir;
CMenuForwarder * epg_read_now;
CMenuOptionChooser *epg_save;
CMenuOptionChooser *epg_save_standby;
CMenuOptionChooser *epg_save_frequently;
CMenuOptionChooser *epg_read;
CMenuOptionChooser *epg_read_frequently;
CMenuOptionChooser *epg_scan;
CMenuOptionChooser *weather_onoff;
CMenuOptionChooser *tmdb_onoff;
CMenuOptionChooser *omdb_onoff;
CMenuOptionChooser *youtube_onoff;
CMenuOptionChooser *shoutcast_onoff;
CMenuForwarder *epg_dir;
CMenuForwarder *epg_read_now;
int width;
std::string epg_cache;
std::string epg_extendedcache;
std::string epg_old_events;
@@ -82,8 +86,8 @@ class CMiscMenue : public CMenuTarget, CChangeObserver
public:
CMiscMenue();
~CMiscMenue();
int exec(CMenuTarget* parent, const std::string & actionKey);
bool changeNotify(const neutrino_locale_t OptionName, void * /*data*/);
int exec(CMenuTarget *parent, const std::string &actionKey);
bool changeNotify(const neutrino_locale_t OptionName, void */*data*/);
};
#endif