diff options
author | Thomas Günther <tom@toms-cafe.de> | 2009-06-21 03:04:34 +0200 |
---|---|---|
committer | Thomas Günther <tom@toms-cafe.de> | 2009-06-21 03:04:34 +0200 |
commit | ea25399458d35ca25e3477200baa1b393a577b37 (patch) | |
tree | 93d9b12177384e6aff92adb36342f02291444473 /graphtft/font.h | |
parent | c51a331d720c7e2fb5252c6cf4c1ddd4b4b8a8a1 (diff) | |
download | vdr-plugin-text2skin-ea25399458d35ca25e3477200baa1b393a577b37.tar.gz vdr-plugin-text2skin-ea25399458d35ca25e3477200baa1b393a577b37.tar.bz2 |
Removed backward compatibility to VDR < 1.6.0 (closes #137)
Diffstat (limited to 'graphtft/font.h')
-rw-r--r-- | graphtft/font.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/graphtft/font.h b/graphtft/font.h index 041baef..d8c804f 100644 --- a/graphtft/font.h +++ b/graphtft/font.h @@ -24,9 +24,6 @@ class cGraphtftFont { private: typedef map<string,cFont*> cache_map; -#if VDRVERSNUM < 10503 - typedef map<string,cFont::tPixelData*> del_map; -#endif public: cGraphtftFont(); @@ -42,12 +39,6 @@ private: FT_Face _face; FT_GlyphSlot _slot; cache_map _cache; -#if VDRVERSNUM < 10503 - del_map _del; -#endif - }; -extern cGraphtftFont GraphtftFont; - #endif |