From: Alexander Shaposhnikov Date: Fri, 28 Jul 2017 22:43:58 +0000 (+0000) Subject: [RAPPS] Incorrect "C" symbol replaced in the rest of the files X-Git-Tag: backups/GSoC_2017/rapps@75905~46 X-Git-Url: https://git.reactos.org/?p=reactos.git;a=commitdiff_plain;h=af150f51fdcef355da1adf5becfdb66c0685b873 [RAPPS] Incorrect "C" symbol replaced in the rest of the files svn path=/branches/GSoC_2017/rapps/; revision=75435 --- diff --git a/reactos/base/applications/rapps/gui.cpp b/reactos/base/applications/rapps/gui.cpp index 9e4fc25e676..50f190e4095 100644 --- a/reactos/base/applications/rapps/gui.cpp +++ b/reactos/base/applications/rapps/gui.cpp @@ -1264,10 +1264,10 @@ private: case ID_INSTALL: if (nSelectedApps) { - СDownloadManager::DownloadListOfApplications(m_ListView->GetCheckedItems()); + CDownloadManager::DownloadListOfApplications(m_ListView->GetCheckedItems()); UpdateApplicationsList(-1); } - else if(СDownloadManager::DownloadApplication(m_ListView->GetSelectedData())) + else if(CDownloadManager::DownloadApplication(m_ListView->GetSelectedData())) { UpdateApplicationsList(-1); } diff --git a/reactos/base/applications/rapps/loaddlg.cpp b/reactos/base/applications/rapps/loaddlg.cpp index acf1ddf9275..cb477144427 100644 --- a/reactos/base/applications/rapps/loaddlg.cpp +++ b/reactos/base/applications/rapps/loaddlg.cpp @@ -341,15 +341,15 @@ MessageBox_LoadString(HWND hMainWnd, INT StringID) } } -// ÑDownloadManager -PAPPLICATION_INFO ÑDownloadManager::AppInfo; -ATL::CSimpleArray ÑDownloadManager::AppsToInstallList; -CDowloadingAppsListView ÑDownloadManager::DownloadsListView; -INT ÑDownloadManager::iCurrentApp; +// CDownloadManager +PAPPLICATION_INFO CDownloadManager::AppInfo; +ATL::CSimpleArray CDownloadManager::AppsToInstallList; +CDowloadingAppsListView CDownloadManager::DownloadsListView; +INT CDownloadManager::iCurrentApp; #define DL_START_NEW WM_APP + 1 -INT_PTR CALLBACK ÑDownloadManager::DownloadDlgProc(HWND Dlg, UINT uMsg, WPARAM wParam, LPARAM lParam) +INT_PTR CALLBACK CDownloadManager::DownloadDlgProc(HWND Dlg, UINT uMsg, WPARAM wParam, LPARAM lParam) { HANDLE Thread; DWORD ThreadId; @@ -458,7 +458,7 @@ INT_PTR CALLBACK } } -LRESULT CALLBACK ÑDownloadManager::DownloadProgressProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam, UINT_PTR uIdSubclass, DWORD_PTR dwRefData) +LRESULT CALLBACK CDownloadManager::DownloadProgressProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam, UINT_PTR uIdSubclass, DWORD_PTR dwRefData) { static ATL::CStringW szProgressText; @@ -533,7 +533,7 @@ LRESULT CALLBACK } } -DWORD WINAPI ÑDownloadManager::ThreadFunc(LPVOID Context) +DWORD WINAPI CDownloadManager::ThreadFunc(LPVOID Context) { CComPtr dl; ATL::CStringW Path; @@ -788,7 +788,7 @@ end: return 0; } -BOOL ÑDownloadManager::DownloadListOfApplications(const ATL::CSimpleArray& AppsList) +BOOL CDownloadManager::DownloadListOfApplications(const ATL::CSimpleArray& AppsList) { if (AppsList.GetSize() == 0) { @@ -804,7 +804,7 @@ BOOL return TRUE; } -BOOL ÑDownloadManager::DownloadApplication(PAPPLICATION_INFO pAppInfo) +BOOL CDownloadManager::DownloadApplication(PAPPLICATION_INFO pAppInfo) { if (!pAppInfo) { @@ -818,7 +818,7 @@ BOOL return TRUE; } -VOID ÑDownloadManager::DownloadApplicationsDB(LPCWSTR lpUrl) +VOID CDownloadManager::DownloadApplicationsDB(LPCWSTR lpUrl) { APPLICATION_INFO IntInfo; IntInfo.szUrlDownload = lpUrl; @@ -827,7 +827,7 @@ VOID } //TODO: Reuse the dialog -VOID ÑDownloadManager::LaunchDownloadDialog() +VOID CDownloadManager::LaunchDownloadDialog() { CreateDialogW(hInst, MAKEINTRESOURCEW(IDD_DOWNLOAD_DIALOG), diff --git a/reactos/base/applications/rapps/rapps.h b/reactos/base/applications/rapps/rapps.h index 6192a13c0ee..d187658ba60 100644 --- a/reactos/base/applications/rapps/rapps.h +++ b/reactos/base/applications/rapps/rapps.h @@ -251,7 +251,7 @@ VOID FillDefaultSettings(PSETTINGS_INFO pSettingsInfo); /* loaddlg.cpp */ class CDowloadingAppsListView; -class ÑDownloadManager +class CDownloadManager { static PAPPLICATION_INFO AppInfo; static ATL::CSimpleArray AppsToInstallList;