mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-15 07:29:34 +02:00
IdeIntf propedits: Do not allow to set caption for TCustomShortCutGrabBox
git-svn-id: trunk@16482 -
This commit is contained in:
parent
ad067e953d
commit
83db1b5f7a
@ -1452,6 +1452,7 @@ type
|
||||
procedure OnKeyComboboxEditingDone(Sender: TObject);
|
||||
protected
|
||||
procedure Loaded; override;
|
||||
procedure RealSetText(const Value: TCaption); override;
|
||||
procedure UpdateShiftButons;
|
||||
procedure Notification(AComponent: TComponent; Operation: TOperation);
|
||||
override;
|
||||
@ -6829,6 +6830,11 @@ begin
|
||||
UpdateShiftButons;
|
||||
end;
|
||||
|
||||
procedure TCustomShortCutGrabBox.RealSetText(const Value: TCaption);
|
||||
begin
|
||||
// do not allow to set caption
|
||||
end;
|
||||
|
||||
procedure TCustomShortCutGrabBox.UpdateShiftButons;
|
||||
var
|
||||
s: TShiftStateEnum;
|
||||
|
Loading…
Reference in New Issue
Block a user