This commit is contained in:
Birunthan Mohanathas 2013-07-12 10:11:39 +03:00
parent f66f858180
commit 92b1e7af8d

View File

@ -4850,19 +4850,14 @@ std::wstring MeterWindow::GetResourcesPath()
std::wstring MeterWindow::GetSkinPath()
{
std::wstring path = L"";
std::wstring path;
if (!m_FolderPath.empty())
{
path += m_FolderPath;
path += L"\\";
}
if (!m_FileName.empty())
{
path += m_FileName;
}
path += m_FileName;
return path;
}