diff options
author | lordjaxom <lordjaxom> | 2004-12-21 22:15:45 +0000 |
---|---|---|
committer | lordjaxom <lordjaxom> | 2004-12-21 22:15:45 +0000 |
commit | af63294d005e220502242bf263ea7eba658a5570 (patch) | |
tree | 14f0a2e059a4b176b50ea1e31561adbbb28c3ddf | |
parent | 5ce7d5ec304ffe6a58f80a0ea2a438c0da4ad84f (diff) | |
download | vdr-plugin-text2skin-af63294d005e220502242bf263ea7eba658a5570.tar.gz vdr-plugin-text2skin-af63294d005e220502242bf263ea7eba658a5570.tar.bz2 |
- formatting issues
-rw-r--r-- | display.h | 10 |
1 files changed, 6 insertions, 4 deletions
@@ -1,5 +1,5 @@ /* - * $Id: display.h,v 1.1 2004/12/19 22:03:13 lordjaxom Exp $ + * $Id: display.h,v 1.2 2004/12/21 22:15:45 lordjaxom Exp $ */ #ifndef VDR_TEXT2SKIN_SKIN_H @@ -95,7 +95,8 @@ public: virtual void SetTotal(const char *Total); virtual void SetJump(const char *Jump); virtual void SetMessage(eMessageType Type, const char *Text); - virtual void SetButtons(const char *Red, const char *Green, const char *Yellow, const char *Blue); + virtual void SetButtons(const char *Red, const char *Green, const char *Yellow, + const char *Blue); virtual void Flush(void) { cText2SkinRender::Flush(); } }; @@ -146,9 +147,10 @@ private: bool operator!=(const tListItem &b) { return b.text != text || b.sel != sel; } }; + typedef std::vector<tListItem> tListItems; - std::vector<tListItem> mItems; - uint mCurrentItem; + tListItems mItems; + uint mCurrentItem; protected: virtual cxType GetTokenData(const txToken &Token); |