From 737be028e5ab6c2e2631bf1e1f267557a4c2e5a9 Mon Sep 17 00:00:00 2001 From: Marshall Greenblatt Date: Fri, 29 Oct 2010 14:16:46 +0000 Subject: [PATCH] Fix bug in ClientHandler::SendNotification(). git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@131 5089003a-bbd8-11dd-ad1f-f1f9622dbc98 --- tests/cefclient/cefclient_win.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/cefclient/cefclient_win.cpp b/tests/cefclient/cefclient_win.cpp index 45159b5fd..6ebd7ec88 100644 --- a/tests/cefclient/cefclient_win.cpp +++ b/tests/cefclient/cefclient_win.cpp @@ -688,13 +688,13 @@ void ClientHandler::SendNotification(NotificationType type) switch(type) { case NOTIFY_CONSOLE_MESSAGE: - id = ID_WARN_DOWNLOADERROR; + id = ID_WARN_CONSOLEMESSAGE; break; case NOTIFY_DOWNLOAD_COMPLETE: id = ID_WARN_DOWNLOADCOMPLETE; break; case NOTIFY_DOWNLOAD_ERROR: - id = ID_WARN_CONSOLEMESSAGE; + id = ID_WARN_DOWNLOADERROR; break; default: return;