Remove "C" prefix in class names

This commit is contained in:
Birunthan Mohanathas
2013-05-31 17:18:52 +03:00
parent 4332cea3d0
commit da9384cfad
126 changed files with 2114 additions and 2116 deletions

View File

@ -90,7 +90,7 @@ void CFolderInfo::Update()
void CFolderInfo::CalculateSize()
{
std::list<CRawString> folderQueue;
std::list<RawString> folderQueue;
folderQueue.push_back(m_Path.c_str());
WCHAR searchPattern[MAX_PATH + 10];
@ -100,7 +100,7 @@ void CFolderInfo::CalculateSize()
HANDLE findHandle;
while (!folderQueue.empty())
{
const CRawString& ref = folderQueue.front();
const RawString& ref = folderQueue.front();
wsprintf(searchPattern, L"%s%s", ref.c_str(), L"\\*.*");
findHandle = FindFirstFile(searchPattern, &findData);

View File

@ -56,7 +56,7 @@ private:
UINT m_InstanceCount;
void* m_Skin;
CRawString m_Path;
RawString m_Path;
bool m_IncludeSubFolders;
bool m_IncludeHiddenFiles;
bool m_IncludeSystemFiles;