diff options
author | Ryan Klaassen <ryan.klaassen@multitech.com> | 2016-08-10 13:04:17 -0500 |
---|---|---|
committer | Ryan Klaassen <ryan.klaassen@multitech.com> | 2016-08-10 13:04:17 -0500 |
commit | 38c0e732ecb32968a91e7eef2b0c42d3062f231e (patch) | |
tree | dab941faa11717a6b3d7189357631a4fbfda5f76 | |
parent | fb0d1cd298f03ab83dd86b92b7bb1fd2ac40151a (diff) | |
download | mtdot-box-evb-factory-firmware-38c0e732ecb32968a91e7eef2b0c42d3062f231e.tar.gz mtdot-box-evb-factory-firmware-38c0e732ecb32968a91e7eef2b0c42d3062f231e.tar.bz2 mtdot-box-evb-factory-firmware-38c0e732ecb32968a91e7eef2b0c42d3062f231e.zip |
Replace LayoutData.h
-rw-r--r-- | Layout/LayoutData.h | 15 |
1 files changed, 1 insertions, 14 deletions
diff --git a/Layout/LayoutData.h b/Layout/LayoutData.h index 78c74dd..ec91583 100644 --- a/Layout/LayoutData.h +++ b/Layout/LayoutData.h @@ -21,9 +21,7 @@ #include "Layout.h" - -class LayoutData : public Layout -{ +class LayoutData : public Layout{ public: LayoutData(DOGS102* lcd); ~LayoutData(); @@ -48,7 +46,6 @@ public: void noData(); void noGps(); void errorData(); - void updateSw1(string str); void updateSw2(string str); bool updateAll(singleLine& line); @@ -60,11 +57,7 @@ private: Label _lGw; Label _lDown; Label _lDbm; - Label _lNoData; Label _lSurveyFailed; - Label _lErrorData1; - Label _lErrorData2; - Label _lNoGps; Label _lAlt; Field _fId; @@ -80,11 +73,5 @@ private: Field _fAlt; Field _fSw1; Field _fSw2; - }; - #endif - - - - |