Changed the naming convention for public member variables/functions and free functions (using lowerCase instead of UpperCase)

This commit is contained in:
Laurent Gomila 2012-03-11 19:10:37 +01:00
parent ff5b69d312
commit 14ac411542
200 changed files with 4302 additions and 4320 deletions

View file

@ -47,14 +47,14 @@ ThreadLocalImpl::~ThreadLocalImpl()
////////////////////////////////////////////////////////////
void ThreadLocalImpl::SetValue(void* value)
void ThreadLocalImpl::setValue(void* value)
{
pthread_setspecific(m_key, value);
}
////////////////////////////////////////////////////////////
void* ThreadLocalImpl::GetValue() const
void* ThreadLocalImpl::getValue() const
{
return pthread_getspecific(m_key);
}