diff options
author | chriszero <zerov83@gmail.com> | 2015-07-07 18:33:57 +0200 |
---|---|---|
committer | chriszero <zerov83@gmail.com> | 2015-07-07 18:33:57 +0200 |
commit | c1220af84ad4586dc0ba8ae8d76d42c16084369c (patch) | |
tree | ca49905e647266c199a88525b46d9c478f206862 /viewGridNavigator.h | |
parent | d62b88d76ff70116bf581acbb5ba61bbd7c6e9f1 (diff) | |
download | vdr-plugin-plex-c1220af84ad4586dc0ba8ae8d76d42c16084369c.tar.gz vdr-plugin-plex-c1220af84ad4586dc0ba8ae8d76d42c16084369c.tar.bz2 |
Fixes compile error on older gcc versions.
Diffstat (limited to 'viewGridNavigator.h')
-rw-r--r-- | viewGridNavigator.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/viewGridNavigator.h b/viewGridNavigator.h index c619300..2622c48 100644 --- a/viewGridNavigator.h +++ b/viewGridNavigator.h @@ -45,8 +45,8 @@ protected: bool m_setIterator; std::vector<cGridElement*> m_vElements; std::vector<cGridElement*>::iterator m_activeElementIter; - int m_startIndex = 0; - int m_endIndex = 0; + int m_startIndex; + int m_endIndex; void GenerateServerElements(); void FilterElements(int scrollOffset); |