diff options
-rw-r--r-- | HISTORY | 4 | ||||
-rw-r--r-- | display.h | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,6 +1,10 @@ VDR Plugin 'text2skin' Revision History --------------------------------------- +20xx-xx-xx: Version 1.4 + +- Fixed some compiler warnings. + 2009-10-06: Version 1.3 - Added Italian language texts (thanks to Diego Pierotto / closes #134) @@ -241,7 +241,7 @@ public: inline bool cText2SkinDisplayTracks::HasTabText(int Index, int n) { - if (Index < 0 || mItems.size () > (uint)Index && n <= 0) + if (Index < 0 || (mItems.size () > (uint)Index && n <= 0)) return mItems[Index].length() > 0; return false; } |