setting_helpers: whitespace cleanup and code format changes

Origin commit data
------------------
Branch: ni/coolstream
Commit: 30a3093d9f
Author: vanhofen <vanhofen@gmx.de>
Date: 2016-05-30 (Mon, 30 May 2016)

Origin message was:
------------------
- setting_helpers: whitespace cleanup and code format changes

------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
vanhofen
2016-05-30 11:21:22 +02:00
parent 7764d30ea3
commit 9ebf5261fa
2 changed files with 20 additions and 23 deletions

View File

@@ -77,10 +77,7 @@ class CTouchFileNotifier : public CChangeObserver
{
const char * filename;
public:
inline CTouchFileNotifier(const char * file_to_modify)
{
filename = file_to_modify;
};
inline CTouchFileNotifier(const char * _filename) { filename = _filename; };
bool changeNotify(const neutrino_locale_t, void * data);
};
@@ -123,32 +120,32 @@ class CMoviePluginChangeExec : public CMenuTarget
class CTZChangeNotifier : public CChangeObserver
{
public:
public:
bool changeNotify(const neutrino_locale_t, void * data);
};
class CDataResetNotifier : public CMenuTarget
{
public:
public:
int exec(CMenuTarget* parent, const std::string& actionKey);
};
class CFanControlNotifier : public CChangeObserver
{
public:
public:
bool changeNotify(const neutrino_locale_t, void * data);
static void setSpeed(unsigned int speed);
};
class CCpuFreqNotifier : public CChangeObserver
{
public:
public:
bool changeNotify(const neutrino_locale_t, void * data);
};
class CAutoModeNotifier : public CChangeObserver
{
public:
public:
bool changeNotify(const neutrino_locale_t, void * data);
};