From e7575ea85f2d50e12ae9a64e61e14ee7ccb3dc65 Mon Sep 17 00:00:00 2001 From: lazarus Date: Sat, 9 Feb 2002 01:47:47 +0000 Subject: [PATCH] MG: TMenuItem can now be created/destroyed/moved at any time git-svn-id: trunk@1073 - --- lcl/include/interfacebase.inc | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/lcl/include/interfacebase.inc b/lcl/include/interfacebase.inc index ed311ed968..b1513f8dc2 100644 --- a/lcl/include/interfacebase.inc +++ b/lcl/include/interfacebase.inc @@ -50,7 +50,7 @@ begin Result := 0; end; -function TInterfaceBase.CheckMenuItem(hMenu: HMENU; uIDEnableItem: Integer; +function TInterfaceBase.CheckMenuItem(hndMenu: HMENU; uIDEnableItem: Integer; bChecked: Boolean): Boolean; begin Result := false; @@ -178,7 +178,7 @@ Begin Result := False; end; -function TInterfaceBase.EnableMenuItem(hMenu: HMENU; uIDEnableItem: Integer; bEnable: Boolean): Boolean; +function TInterfaceBase.EnableMenuItem(hndMenu: HMENU; uIDEnableItem: Integer; bEnable: Boolean): Boolean; begin Result := False; end; @@ -424,7 +424,7 @@ begin Result := False; end; -function TInterfaceBase.RadioMenuItemGroup(hMenu: HMENU; bRadio: Boolean): Boolean; +function TInterfaceBase.RadioMenuItemGroup(hndMenu: HMENU; bRadio: Boolean): Boolean; begin Result := false; end; @@ -444,6 +444,11 @@ begin Result := true; end; +function TInterfaceBase.RegroupMenuItem(hndMenu: HMENU; GroupIndex: Integer) : Boolean; +begin + Result := false; +end; + Function TInterfaceBase.ReleaseCapture : Boolean; Begin Result := True; @@ -610,6 +615,9 @@ end; { ============================================================================= $Log$ + Revision 1.35 2002/08/08 09:07:06 lazarus + MG: TMenuItem can now be created/destroyed/moved at any time + Revision 1.34 2002/08/07 09:55:30 lazarus MG: codecompletion now checks for filebreaks, savefile now checks for filedate