diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2013-02-08 20:43:35 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2013-02-08 20:43:35 +0000 |
commit | bd1739ee0ce7af9d5849b8902de4be82432eea54 (patch) | |
tree | fc84c3d85f668c83988d41f0fc40fef0924ddf2f /plugins/HistoryPlusPlus | |
parent | 7a3c2fe12668ba4346e2b31b34f0b0c4b9ac590d (diff) |
removed not needed interfaces
git-svn-id: http://svn.miranda-ng.org/main/trunk@3486 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
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;
|