From e4848348fc992b4688682a043f01a29d4751899e Mon Sep 17 00:00:00 2001 From: Garrett Brown Date: Fri, 16 Mar 2018 09:48:47 -0700 Subject: [PATCH] Make functions private that are only used internally --- xbmc/guilib/StereoscopicsManager.h | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/xbmc/guilib/StereoscopicsManager.h b/xbmc/guilib/StereoscopicsManager.h index feb7a25274e85..e77d437825c90 100644 --- a/xbmc/guilib/StereoscopicsManager.h +++ b/xbmc/guilib/StereoscopicsManager.h @@ -64,13 +64,6 @@ class CStereoscopicsManager : public ISettingCallback, RENDER_STEREO_MODE GetStereoModeOfPlayingVideo(void) const; std::string GetLabelForStereoMode(const RENDER_STEREO_MODE &mode) const; RENDER_STEREO_MODE GetPreferredPlaybackMode(void) const; - static int ConvertVideoToGuiStereoMode(const std::string &mode); - /** - * @brief will convert a string representation into a GUI stereo mode - * @param mode The string to convert - * @return -1 if not found, otherwise the according int of the RENDER_STEREO_MODE enum - */ - static int ConvertStringToGuiStereoMode(const std::string &mode); static const char* ConvertGuiStereoModeToString(const RENDER_STEREO_MODE &mode); /** @@ -98,6 +91,14 @@ class CStereoscopicsManager : public ISettingCallback, std::string GetVideoStereoMode() const; bool IsVideoStereoscopic() const; + /** + * @brief will convert a string representation into a GUI stereo mode + * @param mode The string to convert + * @return -1 if not found, otherwise the according int of the RENDER_STEREO_MODE enum + */ + static int ConvertStringToGuiStereoMode(const std::string &mode); + static int ConvertVideoToGuiStereoMode(const std::string &mode); + // Construction parameters CSettings &m_settings; CDataCacheCore &m_dataCacheCore;