From b07d9131efc9603fdf7bc8df5c1f41c44f585d35 Mon Sep 17 00:00:00 2001 From: Birunthan Mohanathas Date: Wed, 27 Jun 2012 14:24:47 +0300 Subject: [PATCH] Cosmetics --- Plugins/PluginRecycleManager/RecycleManager.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Plugins/PluginRecycleManager/RecycleManager.cpp b/Plugins/PluginRecycleManager/RecycleManager.cpp index 0a31d6fe..642d317e 100644 --- a/Plugins/PluginRecycleManager/RecycleManager.cpp +++ b/Plugins/PluginRecycleManager/RecycleManager.cpp @@ -50,7 +50,7 @@ struct BinData unsigned int __stdcall QueryRecycleBinThreadProc(void* pParam); HRESULT GetFolderCLSID(LPCWSTR pszPath, CLSID* pathCLSID); LPWSTR GetCurrentUserSid(); -CRawString GetRecycleBinHandle(WCHAR drive, bool& isFAT); +CRawString GetRecycleBinDirectory(WCHAR drive, bool& isFAT); std::vector g_BinData; double g_BinCount = 0; @@ -213,7 +213,7 @@ PLUGIN_EXPORT double Update(void* data) drive[0] = buffer[i]; if (GetDriveType(drive) == DRIVE_FIXED) { - data.directory = GetRecycleBinHandle(buffer[i], data.isFAT); + data.directory = GetRecycleBinDirectory(buffer[i], data.isFAT); } } } @@ -322,7 +322,7 @@ LPWSTR GetCurrentUserSid() return sidStr; } -CRawString GetRecycleBinHandle(WCHAR drive, bool& isFAT) +CRawString GetRecycleBinDirectory(WCHAR drive, bool& isFAT) { WCHAR search[] = L"\0:\\"; search[0] = drive;