mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-18 21:42:51 +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);
|
procedure OnKeyComboboxEditingDone(Sender: TObject);
|
||||||
protected
|
protected
|
||||||
procedure Loaded; override;
|
procedure Loaded; override;
|
||||||
|
procedure RealSetText(const Value: TCaption); override;
|
||||||
procedure UpdateShiftButons;
|
procedure UpdateShiftButons;
|
||||||
procedure Notification(AComponent: TComponent; Operation: TOperation);
|
procedure Notification(AComponent: TComponent; Operation: TOperation);
|
||||||
override;
|
override;
|
||||||
@ -6829,6 +6830,11 @@ begin
|
|||||||
UpdateShiftButons;
|
UpdateShiftButons;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
procedure TCustomShortCutGrabBox.RealSetText(const Value: TCaption);
|
||||||
|
begin
|
||||||
|
// do not allow to set caption
|
||||||
|
end;
|
||||||
|
|
||||||
procedure TCustomShortCutGrabBox.UpdateShiftButons;
|
procedure TCustomShortCutGrabBox.UpdateShiftButons;
|
||||||
var
|
var
|
||||||
s: TShiftStateEnum;
|
s: TShiftStateEnum;
|
||||||
|
Loading…
Reference in New Issue
Block a user