diff options
author | George Hazan <ghazan@miranda.im> | 2019-08-26 13:41:45 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2019-08-26 13:41:45 +0300 |
commit | cb2efce1a4fe9c89c5fef63b3aca63f3e63983fc (patch) | |
tree | aee121fae12956a856e6cd72f2a45d3e4757cd1a /plugins/CrashDumper/src | |
parent | c43051a42bfd2457f6cf5fca9698db0d55b73993 (diff) |
obsolete services removed from core & replaced with functions
Diffstat (limited to 'plugins/CrashDumper/src')
-rw-r--r-- | plugins/CrashDumper/src/dumper.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/CrashDumper/src/dumper.cpp b/plugins/CrashDumper/src/dumper.cpp index 86e5433a79..8e89470c5b 100644 --- a/plugins/CrashDumper/src/dumper.cpp +++ b/plugins/CrashDumper/src/dumper.cpp @@ -391,9 +391,9 @@ void PrintVersionInfo(CMStringW& buffer, unsigned flags) GetFreeMemoryString(buffer);
buffer.Append(L"\r\n");
- wchar_t tszOsVer[200];
- GetOSDisplayString(tszOsVer, _countof(tszOsVer));
- buffer.Append(tszOsVer);
+ char szOsVer[200];
+ OS_GetDisplayString(szOsVer, _countof(szOsVer));
+ buffer.Append(_A2T(szOsVer));
buffer.Append(L"\r\n");
GetInternetExplorerVersion(buffer);
|