diff options
author | mrwastl <mrwastl@users.sourceforge.net> | 2011-09-19 00:15:19 +0200 |
---|---|---|
committer | mrwastl <mrwastl@users.sourceforge.net> | 2011-09-19 00:15:19 +0200 |
commit | 36315d4f3ed507bcc613eb92155d561b78e81af6 (patch) | |
tree | f641c9cf2ac4bf35053ee57033c2294375c2ed59 /glcdskin/string.h | |
parent | face4c4bed68ae0d97d53cb0ebec6f1e02bbfbea (diff) | |
download | graphlcd-base-36315d4f3ed507bcc613eb92155d561b78e81af6.tar.gz graphlcd-base-36315d4f3ed507bcc613eb92155d561b78e81af6.tar.bz2 |
deactivated static method cSkinString::Reparse + static cSkinString::mStrings (wasn't used anyways, but caused big problems when using more than one display thread); beauty fixes: initialisation of static cColor-colour constants now moved to .c-file, type fix
Diffstat (limited to 'glcdskin/string.h')
-rw-r--r-- | glcdskin/string.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/glcdskin/string.h b/glcdskin/string.h index b75fa11..20c517c 100644 --- a/glcdskin/string.h +++ b/glcdskin/string.h @@ -86,8 +86,10 @@ class cSkin; class cSkinString { private: +#if 0 typedef std::vector<cSkinString*> tStringList; static tStringList mStrings; +#endif cSkinObject * mObject; cSkin * mSkin; @@ -97,7 +99,9 @@ private: bool mTranslate; public: +#if 0 static void Reparse(void); +#endif cSkinString(cSkinObject *Parent, bool Translate); ~cSkinString(); |