diff options
author | George Hazan <george.hazan@gmail.com> | 2015-06-24 16:40:12 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2015-06-24 16:40:12 +0000 |
commit | b640a101ad421d40601e07973846d0b95f837b43 (patch) | |
tree | 53963b2fd7f4e66084f61c9b850936de82023e0b /plugins/Actman | |
parent | 0aad754c524950f27bac4d9ef9a786eeff73492c (diff) |
shitty pascal brackets
git-svn-id: http://svn.miranda-ng.org/main/trunk@14365 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Actman')
-rw-r--r-- | plugins/Actman/ua/i_uaplaces.inc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/Actman/ua/i_uaplaces.inc b/plugins/Actman/ua/i_uaplaces.inc index 632c92434e..0b7856f909 100644 --- a/plugins/Actman/ua/i_uaplaces.inc +++ b/plugins/Actman/ua/i_uaplaces.inc @@ -496,7 +496,7 @@ begin begin
hidden := false;
mflags := 0;
- icon := HICON(-1);
+ icon := HICON(INVALID_HANDLE_VALUE);
// Show / hide
if isVarsInstalled then
@@ -564,10 +564,10 @@ begin p:=nil;
if p=nil then
p:=szActDescr;
+
+ Menu_ModifyItem(hMenuItem, p, icon, mflags);
end;
- Menu_ModifyItem(hMenuItem, p, icon, mflags);
-
if (p<>szActDescr) and
(p<>szMenuNameVars) then
mFreeMem(p);
|