aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Carroll <thecarrolls@jiminger.com>2011-07-19 20:53:40 -0400
committerJim Carroll <thecarrolls@jiminger.com>2011-07-19 20:53:40 -0400
commit1c250ecdc865fa3801c99a9aefb1877a31c0a1de (patch)
tree0faa0d3ff4b3c54bcf44b92539e716ac607941a9
parentb0df0db9c20456449edd5b36d4c86eabac918144 (diff)
[cosmetics] "We promise to never use one letter variables."
-rw-r--r--xbmc/guilib/GUIWindow.cpp8
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();
}