Skip to content

Commit

Permalink
[stdstring] get rid of CStdString in interfaces/json-rpc/GUIOperation…
Browse files Browse the repository at this point in the history
…s.cpp
  • Loading branch information
Jonathan Marshall authored and Montellese committed Jan 7, 2015
1 parent da65301 commit f65659c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xbmc/interfaces/json-rpc/GUIOperations.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ JSONRPC_STATUS CGUIOperations::GetPropertyValue(const std::string &property, CVa
result["label"] = g_infoManager.GetLabel(g_infoManager.TranslateString("System.CurrentControl"));
else if (property == "skin")
{
CStdString skinId = CSettings::Get().GetString("lookandfeel.skin");
std::string skinId = CSettings::Get().GetString("lookandfeel.skin");
AddonPtr addon;
CAddonMgr::Get().GetAddon(skinId, addon, ADDON_SKIN);

Expand Down

0 comments on commit f65659c

Please sign in to comment.