diff options
author | George Hazan <ghazan@miranda.im> | 2019-09-18 19:44:31 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2019-09-18 19:44:31 +0300 |
commit | d5809bd36deeb0fdf20d34b50b3595dc939ada92 (patch) | |
tree | 43aacd6116b77b97747589ff502fb2446aa87dcb /plugins | |
parent | 760347687945fcd50e46ebcefc666359258f8579 (diff) |
compilation fix
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/HistoryPlusPlus/historypp.dpr | 6 | ||||
-rw-r--r-- | plugins/HistoryPlusPlus/hpp_opt_dialog.pas | 2 |
2 files changed, 0 insertions, 8 deletions
diff --git a/plugins/HistoryPlusPlus/historypp.dpr b/plugins/HistoryPlusPlus/historypp.dpr index b89c75c664..76ffa71c01 100644 --- a/plugins/HistoryPlusPlus/historypp.dpr +++ b/plugins/HistoryPlusPlus/historypp.dpr @@ -153,9 +153,6 @@ begin HookModulesLoad := HookEvent(ME_SYSTEM_MODULESLOADED, OnModulesLoad);
HookOptInit := HookEvent(ME_OPT_INITIALISE, OnOptInit);
hppRegisterServices;
-{$IFNDEF NO_EXTERNALGRID}
- RegisterExtGridServices;
-{$ENDIF}
hppRegisterMainWindow;
Result := 0;
end;
@@ -186,9 +183,6 @@ begin try
// destroy hidden main window
hppUnregisterMainWindow;
- {$IFNDEF NO_EXTERNALGRID}
- UnregisterExtGridServices;
- {$ENDIF}
// unregistering events
hppUnregisterServices;
// unregister bookmarks
diff --git a/plugins/HistoryPlusPlus/hpp_opt_dialog.pas b/plugins/HistoryPlusPlus/hpp_opt_dialog.pas index 9a0d2ba09b..8f11f03fc7 100644 --- a/plugins/HistoryPlusPlus/hpp_opt_dialog.pas +++ b/plugins/HistoryPlusPlus/hpp_opt_dialog.pas @@ -119,11 +119,9 @@ begin if GetChecked(IDC_RECENTONTOP) <> GetDBBool(hppDBName,'SortOrder',false) then exit;
if GetChecked(IDC_GROUPHISTITEMS) <> GetDBBool(hppDBName,'GroupHistoryItems',false) then exit;
- {$IFNDEF NO_EXTERNALGRID}
if GetChecked(IDC_GROUPLOGITEMS) <> GetDBBool(hppDBName,'GroupLogItems',false) then exit;
if GetChecked(IDC_DISABLEBORDER) <> GetDBBool(hppDBName,'NoLogBorder',false) then exit;
if GetChecked(IDC_DISABLESCROLL) <> GetDBBool(hppDBName,'NoLogScrollBar',false) then exit;
- {$ENDIF}
Result := False;
end;
|