diff options
author | Robert Pösel <robyer@seznam.cz> | 2013-06-14 14:07:23 +0000 |
---|---|---|
committer | Robert Pösel <robyer@seznam.cz> | 2013-06-14 14:07:23 +0000 |
commit | 58d0f51be9792eeca8eadd796ef849039efaf866 (patch) | |
tree | 7b385f99f5e256f2bb9e54ce462d1f7b82f870d3 /src/core | |
parent | 3c6f0aac31f72ebf98ab5ccc5b088cfa977a5126 (diff) |
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
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/stdauth/auth.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
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);
}
|