diff options
author | George Hazan <ghazan@miranda.im> | 2020-07-07 14:33:45 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2020-07-07 14:33:45 +0300 |
commit | cca308b6079ee778c564c0197756595faf63ec88 (patch) | |
tree | f0e4e92ca2f80cc288a82489fb47a0f754495915 /plugins/HistoryPlusPlus/hpp_external.pas | |
parent | 81a813415b1921236ec456dd0cf74839191d2363 (diff) |
IEView:
- text in groupchats isn't scrolled down;
- unused flag removed from IEE_GET_SELECTION processing;
- minor code optimization
Diffstat (limited to 'plugins/HistoryPlusPlus/hpp_external.pas')
-rw-r--r-- | plugins/HistoryPlusPlus/hpp_external.pas | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/HistoryPlusPlus/hpp_external.pas b/plugins/HistoryPlusPlus/hpp_external.pas index 3ec3937f37..53843d277f 100644 --- a/plugins/HistoryPlusPlus/hpp_external.pas +++ b/plugins/HistoryPlusPlus/hpp_external.pas @@ -203,7 +203,7 @@ begin ExtGrid.EndUpdate;
end;
IEE_GET_SELECTION: begin
- Result := uint_ptr(ExtGrid.GetSelection(boolean(event.dwFlags and IEEF_NO_UNICODE)));
+ Result := uint_ptr(ExtGrid.GetSelection());
end;
IEE_SAVE_DOCUMENT: begin
ExtGrid.SaveSelected;
|