mirror of
https://github.com/chibicitiberiu/rainmeter-studio.git
synced 2024-02-24 04:33:31 +00:00
Remove "C" prefix in class names
This commit is contained in:
@ -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);
|
||||
|
@ -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;
|
||||
|
Reference in New Issue
Block a user