https://git.reactos.org/?p=reactos.git;a=commitdiff;h=7796df375a29c2881803de...
commit 7796df375a29c2881803de4d4ce6e4b0d43245ae Author: Andreas Maier staubim@quantentunnel.de AuthorDate: Tue Jun 18 21:00:43 2019 +0200 Commit: Mark Jansen mark.jansen@reactos.org CommitDate: Wed Jun 19 20:37:04 2019 +0200
[EXPLORER] fix traces --- base/shell/explorer/syspager.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/base/shell/explorer/syspager.cpp b/base/shell/explorer/syspager.cpp index 44ccff9b90..2186933150 100644 --- a/base/shell/explorer/syspager.cpp +++ b/base/shell/explorer/syspager.cpp @@ -449,14 +449,14 @@ UINT WINAPI CIconWatcher::WatcherThread(_In_opt_ LPVOID lpParam) { // We've been kicked, we have updates to our list (or we're exiting the thread) if (This->m_Loop) - TRACE("Updating watched icon list"); + TRACE("Updating watched icon list\n"); } else if ((Status >= WAIT_OBJECT_0 + 1) && (Status < Size)) { IconWatcherData *Icon; Icon = This->GetListEntry(NULL, WatchList[Status], false);
- TRACE("Pid %lu owns a notification icon and has stopped without deleting it. We'll cleanup on its behalf", Icon->ProcessId); + TRACE("Pid %lu owns a notification icon and has stopped without deleting it. We'll cleanup on its behalf\n", Icon->ProcessId);
TRAYNOTIFYDATAW tnid = {0}; tnid.dwSignature = NI_NOTIFY_SIG; @@ -837,7 +837,7 @@ BOOL CNotifyToolbar::UpdateButton(_In_ CONST NOTIFYICONDATA *iconData) InternalIconData * notifyItem; TBBUTTONINFO tbbi = { 0 };
- TRACE("Updating icon %d from hWnd %08x flags%s%s state%s%s", + TRACE("Updating icon %d from hWnd %08x flags%s%s state%s%s\n", iconData->uID, iconData->hWnd, (iconData->uFlags & NIF_ICON) ? " ICON" : "", (iconData->uFlags & NIF_STATE) ? " STATE" : "", @@ -847,7 +847,7 @@ BOOL CNotifyToolbar::UpdateButton(_In_ CONST NOTIFYICONDATA *iconData) int index = FindItem(iconData->hWnd, iconData->uID, ¬ifyItem); if (index < 0) { - WARN("Icon %d from hWnd %08x DOES NOT EXIST!", iconData->uID, iconData->hWnd); + WARN("Icon %d from hWnd %08x DOES NOT EXIST!\n", iconData->uID, iconData->hWnd); return AddButton(iconData); }
@@ -946,7 +946,7 @@ BOOL CNotifyToolbar::RemoveButton(_In_ CONST NOTIFYICONDATA *iconData) int index = FindItem(iconData->hWnd, iconData->uID, ¬ifyItem); if (index < 0) { - TRACE("Icon %d from hWnd %08x ALREADY MISSING!", iconData->uID, iconData->hWnd); + TRACE("Icon %d from hWnd %08x ALREADY MISSING!\n", iconData->uID, iconData->hWnd);
return FALSE; }