miscsettings-menu: formatting code using astyle

Origin commit data
------------------
Commit: 59e566408c
Author: vanhofen <vanhofen@gmx.de>
Date: 2021-10-20 (Wed, 20 Oct 2021)

Origin message was:
------------------
- miscsettings-menu: formatting code using astyle
This commit is contained in:
vanhofen
2021-10-20 19:31:13 +02:00
parent 92deb0287b
commit d24bc25c01
2 changed files with 123 additions and 117 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