diff options
author | spiff_ <spiff_@svn> | 2009-10-12 20:28:21 +0000 |
---|---|---|
committer | spiff_ <spiff_@svn> | 2009-10-12 20:28:21 +0000 |
commit | 92a98a0392a65c0496f833c15c9f73b7cf5fdbca (patch) | |
tree | 83b24d1cc178a29602d2a38e2fe4c46476fab1a0 /guilib/GUIRSSControl.h | |
parent | b89f8ce621a669ad43079f799950799258d7eea0 (diff) |
changed: make right to left a rss set property and remove gui setting
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@23668 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
Diffstat (limited to 'guilib/GUIRSSControl.h')
-rw-r--r-- | guilib/GUIRSSControl.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/guilib/GUIRSSControl.h b/guilib/GUIRSSControl.h index 8d3aa4e0db..ff604cfe8c 100644 --- a/guilib/GUIRSSControl.h +++ b/guilib/GUIRSSControl.h @@ -64,7 +64,7 @@ public: virtual bool CanFocus() const { return false; }; void SetIntervals(const std::vector<int>& vecIntervals); - void SetUrls(const std::vector<std::string>& vecUrl); + void SetUrls(const std::vector<std::string>& vecUrl, bool rtl); protected: virtual void UpdateColors(); @@ -82,6 +82,7 @@ protected: std::vector<std::string> m_vecUrls; std::vector<int> m_vecIntervals; + bool m_rtl; CScrollInfo m_scrollInfo; }; #endif |