From 58d0f51be9792eeca8eadd796ef849039efaf866 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20P=C3=B6sel?= Date: Fri, 14 Jun 2013 14:07:23 +0000 Subject: Added auth icons into core. Used those for auth events (instead of miranda logo icon). Also fixes #186 git-svn-id: http://svn.miranda-ng.org/main/trunk@4935 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- src/core/stdauth/auth.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/core/stdauth/auth.cpp') diff --git a/src/core/stdauth/auth.cpp b/src/core/stdauth/auth.cpp index 270bbb1436..7f349ede03 100644 --- a/src/core/stdauth/auth.cpp +++ b/src/core/stdauth/auth.cpp @@ -91,7 +91,7 @@ static int AuthEventAdded(WPARAM, LPARAM lParam) else mir_sntprintf(szTooltip, SIZEOF(szTooltip), TranslateT("%u requests authorization"), *(PDWORD)dbei.pBlob); - cli.hIcon = LoadSkinIcon(SKINICON_OTHER_MIRANDA); + cli.hIcon = LoadSkinIcon(SKINICON_AUTH_REQUEST); cli.pszService = MS_AUTH_SHOWREQUEST; CallService(MS_CLIST_ADDEVENT, 0, (LPARAM)&cli); } @@ -102,7 +102,7 @@ static int AuthEventAdded(WPARAM, LPARAM lParam) else mir_sntprintf(szTooltip, SIZEOF(szTooltip), TranslateT("%u added you to their contact list"), *(PDWORD)dbei.pBlob); - cli.hIcon = LoadSkinIcon(SKINICON_OTHER_MIRANDA); + cli.hIcon = LoadSkinIcon(SKINICON_AUTH_ADD); cli.pszService = MS_AUTH_SHOWADDED; CallService(MS_CLIST_ADDEVENT, 0, (LPARAM)&cli); } -- cgit v1.2.3