diff options
author | George Hazan <ghazan@miranda.im> | 2017-11-30 12:05:39 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2017-11-30 12:05:39 +0300 |
commit | 4a678fd22c24640d70cc246a90368c15c6dc2466 (patch) | |
tree | 69bd348231c64dd1aed129f6786fa84c028b360c /plugins/Msg_Export | |
parent | 24d0079a65fc2b4a05eff4dd777fbfc25b1654fd (diff) |
russian letter 'c' in an identifier
Diffstat (limited to 'plugins/Msg_Export')
-rwxr-xr-x | plugins/Msg_Export/src/main.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/Msg_Export/src/main.cpp b/plugins/Msg_Export/src/main.cpp index 333029e5f1..686294963b 100755 --- a/plugins/Msg_Export/src/main.cpp +++ b/plugins/Msg_Export/src/main.cpp @@ -208,12 +208,12 @@ extern "C" __declspec(dllexport) int Load() enRenameAction = (ENDialogAction)db_get_b(NULL, MODULE, "RenameAction", enRenameAction);
enDeleteAction = (ENDialogAction)db_get_b(NULL, MODULE, "DeleteAction", enDeleteAction);
- HANDLE hServiceFunс = nullptr;
+ HANDLE hServiceFunc = nullptr;
if (bReplaceHistory)
- hServiceFunс = CreateServiceFunction(MS_HISTORY_SHOWCONTACTHISTORY, ShowExportHistory); //this need new code
+ hServiceFunc = CreateServiceFunction(MS_HISTORY_SHOWCONTACTHISTORY, ShowExportHistory); //this need new code
- if (!hServiceFunс)
- hServiceFunс = CreateServiceFunction(MS_SHOW_EXPORT_HISTORY, ShowExportHistory);
+ if (!hServiceFunc)
+ hServiceFunc = CreateServiceFunction(MS_SHOW_EXPORT_HISTORY, ShowExportHistory);
hInternalWindowList = WindowList_Create();
return 0;
|