diff options
author | Alexey Kulakov <panda75@bk.ru> | 2012-07-13 12:05:09 +0000 |
---|---|---|
committer | Alexey Kulakov <panda75@bk.ru> | 2012-07-13 12:05:09 +0000 |
commit | a79fa86ed589c3d843baa932230ef08bc7468296 (patch) | |
tree | 98339a8ea73acfffbea00ca607c6525e89657ac6 /plugins/HistoryPlusPlus/hpp_richedit.pas | |
parent | a87fb51fd8597af4909892f0e12010594e935586 (diff) |
partial code beautifier (through Pascal Analizer)
git-svn-id: http://svn.miranda-ng.org/main/trunk@947 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/HistoryPlusPlus/hpp_richedit.pas')
-rw-r--r-- | plugins/HistoryPlusPlus/hpp_richedit.pas | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/plugins/HistoryPlusPlus/hpp_richedit.pas b/plugins/HistoryPlusPlus/hpp_richedit.pas index aed3ce1237..ea6f2c1b79 100644 --- a/plugins/HistoryPlusPlus/hpp_richedit.pas +++ b/plugins/HistoryPlusPlus/hpp_richedit.pas @@ -51,8 +51,7 @@ interface uses
Windows, Messages, Classes, RichEdit, ActiveX,
- Controls, StdCtrls, ComCtrls, Forms,
- hpp_global;
+ Controls, StdCtrls, ComCtrls, Forms;
const
IID_IOleObject: TGUID = '{00000112-0000-0000-C000-000000000046}';
@@ -1107,7 +1106,9 @@ procedure Register; implementation
-uses Types, SysUtils;
+uses
+ Types, SysUtils,
+ hpp_global;
type
EOleError = class(Exception);
@@ -1128,7 +1129,7 @@ var procedure Register;
begin
- RegisterComponents('History++', [THppRichedit]);
+ RegisterComponents(hppName, [THppRichedit]);
end;
function GetModuleVersionFile(hModule: THandle): Integer;
|