summaryrefslogtreecommitdiff
path: root/display.h
diff options
context:
space:
mode:
authorVille Skyttä <ville.skytta@iki.fi>2009-12-03 21:40:43 +0200
committerVille Skyttä <ville.skytta@iki.fi>2009-12-03 21:40:43 +0200
commitd7ad90d94ed2a12d7600d6b80478dca03e102ca5 (patch)
tree3cf23182ac5d5dd953cbae9a4be2c56ab93ce894 /display.h
parent631e10188d53d4c21ecf7b83a99b5726bf53f375 (diff)
downloadvdr-plugin-text2skin-d7ad90d94ed2a12d7600d6b80478dca03e102ca5.tar.gz
vdr-plugin-text2skin-d7ad90d94ed2a12d7600d6b80478dca03e102ca5.tar.bz2
Fix "suggest parentheses around ‘&&’ within ‘||’" compiler warning.
Diffstat (limited to 'display.h')
-rw-r--r--display.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/display.h b/display.h
index 8326962..80a9ff1 100644
--- a/display.h
+++ b/display.h
@@ -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;
}