From a9197f5d5921263a042979b0d14fc2c61e411320 Mon Sep 17 00:00:00 2001 From: Kirill Volinsky Date: Mon, 11 May 2015 15:20:06 +0000 Subject: minus CreateThread git-svn-id: http://svn.miranda-ng.org/main/trunk@13543 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/WhenWasIt/src/icons.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'plugins/WhenWasIt/src/icons.cpp') diff --git a/plugins/WhenWasIt/src/icons.cpp b/plugins/WhenWasIt/src/icons.cpp index 3a9d670b8a..e3dac6f51f 100644 --- a/plugins/WhenWasIt/src/icons.cpp +++ b/plugins/WhenWasIt/src/icons.cpp @@ -24,10 +24,10 @@ HANDLE hCheckMenu, hListMenu, hAddBirthdayContact, hRefreshUserDetails; HANDLE hImportBirthdays, hExportBirthdays; const int cDTB = 10; -HANDLE hDTB[cDTB] = {NULL}; +HANDLE hDTB[cDTB] = { NULL }; HANDLE hDTBMore = NULL; -HANDLE hWWIExtraIcons = (HANDLE) -1; +HANDLE hWWIExtraIcons = (HANDLE)-1; static HANDLE AddIcon(char *name, char *description, TCHAR *tszPath, int iDefaultIdx) { @@ -62,7 +62,7 @@ int AddIcons() for (int i = 2; i < cDTB; i++) { mir_snprintf(name, SIZEOF(name), "DTB%d", i); mir_snprintf(description, SIZEOF(description), Translate("%d days to birthday"), i); - hDTB[i] = AddIcon(name, description, tszPath, IDI_DTB0+i); + hDTB[i] = AddIcon(name, description, tszPath, IDI_DTB0 + i); } mir_snprintf(description, SIZEOF(description), Translate("More than %d days to birthday"), cDTB - 1); hDTBMore = AddIcon("DTBMore", description, tszPath, IDI_DTBMORE); -- cgit v1.2.3