- vfd-setup: formatting code using astyle; some manual code nicenings

Conflicts:
	src/gui/vfd_setup.cpp

Signed-off-by: Thilo Graf <dbt@novatux.de>
This commit is contained in:
svenhoefer
2021-12-06 05:18:19 +01:00
committed by Thilo Graf
parent bbd59e63eb
commit 2a4b292f2e
2 changed files with 101 additions and 54 deletions

View File

@@ -36,11 +36,11 @@
#include <string>
class CVfdSetup : public CMenuTarget, CChangeObserver, CActivateObserver
{
class CVfdSetup : public CMenuTarget, CChangeObserver, CActivateObserver
{
private:
int width;
int showSetup();
int showBrightnessSetup();
void showLedSetup(CMenuWidget *mn_led_widget);
@@ -50,14 +50,13 @@
int brightness;
int brightnessstandby;
int brightnessdeepstandby;
bool vfd_enabled;
bool vfd_enabled;
public:
CVfdSetup();
~CVfdSetup();
int exec(CMenuTarget* parent, const std::string & actionKey);
int exec(CMenuTarget *parent, const std::string &actionKey);
};
#endif