Fix bug in ClientHandler::SendNotification().

git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@131 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
Marshall Greenblatt 2010-10-29 14:16:46 +00:00
parent 9e3128fb42
commit 737be028e5
1 changed files with 2 additions and 2 deletions

View File

@ -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;