From 1cab92748cda48d90a9b5539a95c775c8af22cd6 Mon Sep 17 00:00:00 2001 From: martin Date: Wed, 10 Feb 2016 06:37:07 +0000 Subject: [PATCH] Keymap: fix, remove deleted entries from category. git-svn-id: trunk@51563 - --- components/ideintf/idecommands.pas | 2 ++ 1 file changed, 2 insertions(+) diff --git a/components/ideintf/idecommands.pas b/components/ideintf/idecommands.pas index cf3bddf0c2..ba2d77931f 100644 --- a/components/ideintf/idecommands.pas +++ b/components/ideintf/idecommands.pas @@ -1418,6 +1418,8 @@ end; destructor TIDECommand.Destroy; begin + if Category <> nil then + Category := nil; FUsers.Free; inherited Destroy; end;