diff options
author | Alexey Kulakov <panda75@bk.ru> | 2014-12-11 09:46:45 +0000 |
---|---|---|
committer | Alexey Kulakov <panda75@bk.ru> | 2014-12-11 09:46:45 +0000 |
commit | e8c5f2538f49c02e274057ce73d6ad837b1dc962 (patch) | |
tree | eaeac5994f6bc576f7d5d4ea1a294b7e66620d27 | |
parent | 4a78501add1e8522d7b95e03a995a2cf2db03766 (diff) |
Actman 30: compilation fix
git-svn-id: http://svn.miranda-ng.org/main/trunk@11323 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
-rw-r--r-- | plugins/Actman30/i_options.inc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/Actman30/i_options.inc b/plugins/Actman30/i_options.inc index 539270be2d..e9c389818d 100644 --- a/plugins/Actman30/i_options.inc +++ b/plugins/Actman30/i_options.inc @@ -40,7 +40,7 @@ end; procedure SaveMacros;
var
Macro:pMacroRecord;
- NumMacros:integer;
+ OldNumMacros,NumMacros:integer;
i:integer;
section:array [0..127] of AnsiChar;
p,p1:PAnsiChar;
@@ -61,7 +61,7 @@ begin begin
if (flags and (ACF_ASSIGNED or ACF_VOLATILE))=ACF_ASSIGNED then
begin
- p:=StrEnd(IntToStr(p1,NumMacro));
+ p:=StrEnd(IntToStr(p1,NumMacros));
p^:='/'; inc(p);
StrCopy(p,opt_id ); DBWriteDWord(0,DBBranch,section,id);
@@ -83,8 +83,8 @@ begin // deleting old unused macro settings
while OldNumMacros>NumMacros do
begin
- dec(OldNumMacro);
- p:=IntToStr(p1,OldNumMacro);
+ dec(OldNumMacros);
+ p:=IntToStr(p1,OldNumMacros);
DBDeleteGroup(0,DBBranch,section);
end;
end;
|