Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: src/plugin/Plugin.cpp

Issue 5750789393874944: [IE] First round of ATL removal (Closed)
Patch Set: Created June 20, 2014, 9:22 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/plugin/Plugin.cpp
===================================================================
--- a/src/plugin/Plugin.cpp
+++ b/src/plugin/Plugin.cpp
@@ -114,17 +114,21 @@
if (isInstall)
{
- DEBUG_GENERAL(
- L"================================================================================\nINSTALLER " +
- CString(IEPLUGIN_VERSION) +
- L"\n================================================================================")
+ std::wstring t[] = {
+ L"================================================================================",
+ L"INSTALLER " IEPLUGIN_VERSION,
+ L"================================================================================"
+ };
+ DEBUG_GENERAL( t );
}
else
{
- DEBUG_GENERAL(
- L"================================================================================\nUPDATER " +
- CString(IEPLUGIN_VERSION) +
- L"\n================================================================================")
+ std::wstring t[] = {
+ L"================================================================================",
+ L"UPDATER " IEPLUGIN_VERSION,
+ L"================================================================================"
+ };
+ DEBUG_GENERAL( t );
}
// Post async plugin error

Powered by Google App Engine
This is Rietveld