mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-10-01 18:29:30 +02:00
fix bug #602, statusbar loses text on first panel
git-svn-id: trunk@6781 -
This commit is contained in:
parent
aa256339b2
commit
dc9a14d438
@ -50,6 +50,7 @@ type
|
||||
class procedure Update(const AStatusBar: TStatusBar); override;
|
||||
class procedure PanelUpdate(const AStatusBar: TStatusBar; PanelIndex: integer); override;
|
||||
class procedure SetPanelText(const AStatusBar: TStatusBar; PanelIndex: integer); override;
|
||||
class procedure SetText(const AWinControl: TWinControl; const AText: string); override;
|
||||
end;
|
||||
|
||||
{ TWin32WSTabSheet }
|
||||
@ -298,6 +299,12 @@ begin
|
||||
end;
|
||||
end;
|
||||
|
||||
procedure TWin32WSStatusBar.SetText(const AWinControl: TWinControl; const AText: string);
|
||||
begin
|
||||
// inhibit. StatusBars do not have a caption, simpletext is set by SetPanelText
|
||||
end;
|
||||
|
||||
|
||||
{ TWin32WSCustomListView }
|
||||
|
||||
const
|
||||
|
Loading…
Reference in New Issue
Block a user