diff options
author | Jim Carroll <thecarrolls@jiminger.com> | 2011-07-19 20:53:40 -0400 |
---|---|---|
committer | Jim Carroll <thecarrolls@jiminger.com> | 2011-07-19 20:53:40 -0400 |
commit | 1c250ecdc865fa3801c99a9aefb1877a31c0a1de (patch) | |
tree | 0faa0d3ff4b3c54bcf44b92539e716ac607941a9 | |
parent | b0df0db9c20456449edd5b36d4c86eabac918144 (diff) |
[cosmetics] "We promise to never use one letter variables."
-rw-r--r-- | xbmc/guilib/GUIWindow.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/xbmc/guilib/GUIWindow.cpp b/xbmc/guilib/GUIWindow.cpp index 6645f2faa8..4cac29ed9d 100644 --- a/xbmc/guilib/GUIWindow.cpp +++ b/xbmc/guilib/GUIWindow.cpp @@ -852,13 +852,13 @@ void CGUIWindow::ChangeButtonToEdit(int id, bool singleLabel /* = false*/) void CGUIWindow::SetProperty(const CStdString &key, const CStdString &value) { - CSingleLock l(*this); + CSingleLock lock(*this); m_mapProperties[key] = value; } void CGUIWindow::SetProperty(const CStdString &key, const char *value) { - CSingleLock l(*this); + CSingleLock lock(*this); m_mapProperties[key] = value; } @@ -883,7 +883,7 @@ void CGUIWindow::SetProperty(const CStdString &key, double value) CStdString CGUIWindow::GetProperty(const CStdString &key) const { - CSingleLock l(*this); + CSingleLock lock(*this); std::map<CStdString,CStdString,icompare>::const_iterator iter = m_mapProperties.find(key); if (iter == m_mapProperties.end()) return ""; @@ -908,7 +908,7 @@ double CGUIWindow::GetPropertyDouble(const CStdString &key) const void CGUIWindow::ClearProperties() { - CSingleLock l(*this); + CSingleLock lock(*this); m_mapProperties.clear(); } |