From 8ae3679aa1339ce9abee53adb69902bd6b7513dc Mon Sep 17 00:00:00 2001 From: George Hazan Date: Mon, 25 Jul 2016 10:31:04 +0000 Subject: hello, Unix. phase 1: removing _T() git-svn-id: http://svn.miranda-ng.org/main/trunk@17127 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/Quotes/src/ComHelper.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'plugins/Quotes/src/ComHelper.cpp') diff --git a/plugins/Quotes/src/ComHelper.cpp b/plugins/Quotes/src/ComHelper.cpp index 57cf21b15a..6228ae9526 100644 --- a/plugins/Quotes/src/ComHelper.cpp +++ b/plugins/Quotes/src/ComHelper.cpp @@ -7,7 +7,7 @@ tstring ComException2Msg(_com_error& e, const tstring& rsAdditionalInfo) if (false == rsAdditionalInfo.empty()) o << rsAdditionalInfo << "\n"; - o << e.ErrorMessage() << _T(" (") << std::hex << hError << _T(")"); + o << e.ErrorMessage() << L" (" << std::hex << hError << L")"; IErrorInfo* p = e.ErrorInfo(); CComPtr pErrorInfo(p); @@ -15,7 +15,7 @@ tstring ComException2Msg(_com_error& e, const tstring& rsAdditionalInfo) p->Release(); if (pErrorInfo) - o << _T("\n") << e.Description(); + o << L"\n" << e.Description(); return o.str(); } -- cgit v1.2.3