diff options
author | George Hazan <george.hazan@gmail.com> | 2014-07-19 19:27:54 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2014-07-19 19:27:54 +0000 |
commit | bc71dc491b0487d465fac290224c27a1240281bf (patch) | |
tree | 60f2a7fcb7f54f80d9869a256580d9b7aedd0ba3 /src/modules | |
parent | 4105064506a4ea89fe17ed8007073faf3ccfe08c (diff) |
more red icon for the fatal errors
git-svn-id: http://svn.miranda-ng.org/main/trunk@9869 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'src/modules')
-rw-r--r-- | src/modules/database/profilemanager.cpp | 2 | ||||
-rw-r--r-- | src/modules/skin/skinicons.cpp | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/src/modules/database/profilemanager.cpp b/src/modules/database/profilemanager.cpp index 4c1d4fec2f..0edb7e8380 100644 --- a/src/modules/database/profilemanager.cpp +++ b/src/modules/database/profilemanager.cpp @@ -519,7 +519,7 @@ static INT_PTR CALLBACK DlgProfileSelect(HWND hwndDlg, UINT msg, WPARAM wParam, ImageList_AddIcon_NotShared(hImgList, MAKEINTRESOURCE(IDI_USERDETAILS));
ImageList_AddIcon_NotShared(hImgList, MAKEINTRESOURCE(IDI_DELETE));
ImageList_AddIcon_NotShared(hImgList, MAKEINTRESOURCE(IDI_MWARNING));
- ImageList_AddIcon_NotShared(hImgList, MAKEINTRESOURCE(IDI_MERROR));
+ ImageList_AddIcon_NotShared(hImgList, MAKEINTRESOURCE(IDI_MFATAL));
// LV will destroy the image list
SetWindowLongPtr(hwndList, GWL_STYLE, GetWindowLongPtr(hwndList, GWL_STYLE) | LVS_SORTASCENDING);
diff --git a/src/modules/skin/skinicons.cpp b/src/modules/skin/skinicons.cpp index 89775c90c6..345eaf0e96 100644 --- a/src/modules/skin/skinicons.cpp +++ b/src/modules/skin/skinicons.cpp @@ -87,9 +87,11 @@ static struct StandardIconDescription mainIcons[] = { SKINICON_AUTH_REQUEST, LPGEN("Request authorization"), -IDI_AUTH_REQUEST }, // 48
{ SKINICON_AUTH_GRANT, LPGEN("Grant authorization"), -IDI_AUTH_GRANT }, // 49
{ SKINICON_AUTH_REVOKE, LPGEN("Revoke authorization"), -IDI_AUTH_REVOKE }, // 50
+ { SKINICON_FATAL, LPGEN("Fatal error"), -IDI_MFATAL },
{ SKINICON_ERROR, LPGEN("Error"), -IDI_MERROR },
{ SKINICON_WARNING, LPGEN("Warning"), -IDI_MWARNING },
{ SKINICON_INFORMATION, LPGEN("Information"), -IDI_MINFO },
+
{ SKINICON_OTHER_VISIBLE_ALL, LPGEN("Always visible"), -IDI_ALWAYSVIS, 0, LPGEN("Contact list") },
{ SKINICON_OTHER_INVISIBLE_ALL, LPGEN("Always invisible"), -IDI_NEVERVIS, 0, LPGEN("Contact list") },
{ SKINICON_OTHER_STATUS_LOCKED, LPGEN("Locked status"), -IDI_STATUS_LOCKED, 0, LPGEN("Status icons") },
|