mirror of
https://github.com/chibicitiberiu/rainmeter-studio.git
synced 2024-02-24 04:33:31 +00:00
Tweak f4429ad
This commit is contained in:
@ -351,7 +351,7 @@ void CMeter::ReadOptions(CConfigParser& parser, const WCHAR* section)
|
||||
delete m_Transformation;
|
||||
m_Transformation = NULL;
|
||||
|
||||
CLogger_ErrorF(L"Meter: Incorrect number of values in TransformationMatrix=%s", parser.ReadString(section, L"TransformationMatrix", L"").c_str());
|
||||
LogErrorF(L"Meter: Incorrect number of values in TransformationMatrix=%s", parser.ReadString(section, L"TransformationMatrix", L"").c_str());
|
||||
}
|
||||
}
|
||||
|
||||
@ -409,7 +409,7 @@ CMeter* CMeter::Create(const WCHAR* meter, CMeterWindow* meterWindow, const WCHA
|
||||
return new CMeterButton(meterWindow, name);
|
||||
}
|
||||
|
||||
CLogger_ErrorF(L"Meter=%s is not valid in [%s]", meter, name);
|
||||
LogErrorF(L"Meter=%s is not valid in [%s]", meter, name);
|
||||
|
||||
return NULL;
|
||||
}
|
||||
@ -443,7 +443,7 @@ bool CMeter::BindPrimaryMeasure(CConfigParser& parser, const WCHAR* section, boo
|
||||
}
|
||||
else if (!optional)
|
||||
{
|
||||
CLogger_ErrorF(L"MeasureName=%s is not valid in [%s]", measureName.c_str(), section);
|
||||
LogErrorF(L"MeasureName=%s is not valid in [%s]", measureName.c_str(), section);
|
||||
}
|
||||
|
||||
return false;
|
||||
@ -473,7 +473,7 @@ void CMeter::BindSecondaryMeasures(CConfigParser& parser, const WCHAR* section)
|
||||
{
|
||||
if (!measureName.empty())
|
||||
{
|
||||
CLogger_ErrorF(L"MeasureName%i=%s is not valid in [%s]", i, measureName.c_str(), section);
|
||||
LogErrorF(L"MeasureName%i=%s is not valid in [%s]", i, measureName.c_str(), section);
|
||||
}
|
||||
|
||||
break;
|
||||
|
Reference in New Issue
Block a user