diff options
Diffstat (limited to 'plugins/HistoryPlusPlus')
-rw-r--r-- | plugins/HistoryPlusPlus/historypp.dpr | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/plugins/HistoryPlusPlus/historypp.dpr b/plugins/HistoryPlusPlus/historypp.dpr index acde07e54d..876722eca7 100644 --- a/plugins/HistoryPlusPlus/historypp.dpr +++ b/plugins/HistoryPlusPlus/historypp.dpr @@ -149,14 +149,13 @@ begin end;
var
- PluginInterfaces: array[0..2] of TGUID;
+ PluginInterfaces: array[0..1] of TGUID;
// tell Miranda about supported interfaces
function MirandaPluginInterfaces:PMUUID; cdecl;
begin
PluginInterfaces[0]:=MIID_UIHISTORY;
- PluginInterfaces[1]:=MIID_LOGWINDOW;
- PluginInterfaces[2]:=MIID_LAST;
+ PluginInterfaces[1]:=MIID_LAST;
Result := @PluginInterfaces;
end;
|