diff options
author | Ville Skyttä <ville.skytta@iki.fi> | 2012-03-28 17:54:20 +0300 |
---|---|---|
committer | Ville Skyttä <ville.skytta@iki.fi> | 2012-03-28 17:54:20 +0300 |
commit | e74a3437211bed8e483ce289b87c99f479849a35 (patch) | |
tree | 001af70ff6ffad80f37411f507d6b8b97217b92a /bitmap.h | |
parent | eb464b67a9ea3ba12056d8f8353d28833dfe68e3 (diff) | |
download | vdr-plugin-text2skin-e74a3437211bed8e483ce289b87c99f479849a35.tar.gz vdr-plugin-text2skin-e74a3437211bed8e483ce289b87c99f479849a35.tar.bz2 |
Trim trailing whitespace.
Diffstat (limited to 'bitmap.h')
-rw-r--r-- | bitmap.h | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -21,7 +21,7 @@ struct tBitmapSpec { bool operator==(const tBitmapSpec &Src) const; }; -inline bool tBitmapSpec::operator<(const tBitmapSpec &Src) const +inline bool tBitmapSpec::operator<(const tBitmapSpec &Src) const { if (Filename == Src.Filename) { if (Alpha == Src.Alpha) { @@ -36,7 +36,7 @@ inline bool tBitmapSpec::operator<(const tBitmapSpec &Src) const } return Filename < Src.Filename; } - + inline bool tBitmapSpec::operator==(const tBitmapSpec &Src) const { return Filename == Src.Filename @@ -74,14 +74,14 @@ private: bool LoadNonXpm(const char *Filename, int height, int width, int colors, bool Quiet); public: - static cText2SkinBitmap *Load(const std::string &Filename, int Alpha = 0, int height = 0, + static cText2SkinBitmap *Load(const std::string &Filename, int Alpha = 0, int height = 0, int width = 0, int colors = 0, bool Quiet = false); - static bool Available(const std::string &Filename, int Alpha = 0, int height = 0, + static bool Available(const std::string &Filename, int Alpha = 0, int height = 0, int width = 0, int colors = 0); static void ResetCache(void) { mCache.Reset(); } static void FlushCache(void) { mCache.Flush(); } static void Init(void); - + virtual ~cText2SkinBitmap(); void Reset(void) { mCurrent = 0; mLastGet = 0; } |