summaryrefslogtreecommitdiff
path: root/plugins/Utils.pas/editwrapper.pas
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2015-06-21 12:01:49 +0000
committerGeorge Hazan <george.hazan@gmail.com>2015-06-21 12:01:49 +0000
commite865872b4ef16b6e40cfe868843f1070fa3a239b (patch)
tree0710f76e005c25ce151c46015c0853af6101d2cc /plugins/Utils.pas/editwrapper.pas
parent87cf54594168e5579bbb852bcb4aaae3fefa3b89 (diff)
- resizer moved to mir_core, because it uses hard-coded windows structures;
- MS_UTILS_RESIZEDIALOG replaced with a short call of Utils_ResizeDialog; - code cleaning git-svn-id: http://svn.miranda-ng.org/main/trunk@14295 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Utils.pas/editwrapper.pas')
-rw-r--r--plugins/Utils.pas/editwrapper.pas20
1 files changed, 2 insertions, 18 deletions
diff --git a/plugins/Utils.pas/editwrapper.pas b/plugins/Utils.pas/editwrapper.pas
index 6572db56e4..034a45e15b 100644
--- a/plugins/Utils.pas/editwrapper.pas
+++ b/plugins/Utils.pas/editwrapper.pas
@@ -89,7 +89,6 @@ var
vhi:TVARHELPINFO;
cr:integer;
idshow,idhide:integer;
- urd:TUTILRESIZEDIALOG;
begin
result:=0;
@@ -154,14 +153,7 @@ begin
end;
WM_SIZE: begin
- FillChar(urd,SizeOf(TUTILRESIZEDIALOG),0);
- urd.cbSize :=SizeOf(urd);
- urd.hwndDlg :=Dialog;
- urd.hInstance :=hInstance;
- urd.lpTemplate:='IDD_EDITCONTROL';
- urd.lParam :=0;
- urd.pfnResizer:=@EditDlgResizer;
- CallService(MS_UTILS_RESIZEDIALOG,0,tlparam(@urd));
+ Utils_ResizeDialog(Dialog, hInstance, 'IDD_EDITCONTROL', @EditDlgResizer);
end;
WM_COMMAND: begin
@@ -403,7 +395,6 @@ var
p:pResultText;
cr:integer;
idshow,idhide:integer;
- urd:TUTILRESIZEDIALOG;
begin
result:=0;
@@ -449,14 +440,7 @@ begin
end;
WM_SIZE: begin
- FillChar(urd,SizeOf(TUTILRESIZEDIALOG),0);
- urd.cbSize :=SizeOf(urd);
- urd.hwndDlg :=Dialog;
- urd.hInstance :=hInstance;
- urd.lpTemplate:='IDD_EDITCONTROL';
- urd.lParam :=0;
- urd.pfnResizer:=@EditDlgResizer;
- CallService(MS_UTILS_RESIZEDIALOG,0,tlparam(@urd));
+ Utils_ResizeDialog(Dialog, hInstance, 'IDD_EDITCONTROL', @EditDlgResizer);
end;
WM_COMMAND: begin