diff options
author | Graeme Geldenhuys <graeme@mastermaths.co.za> | 2010-10-15 11:10:27 +0200 |
---|---|---|
committer | Graeme Geldenhuys <graeme@mastermaths.co.za> | 2010-10-15 11:10:27 +0200 |
commit | 59f9a7513fe58a046b789caf881e432b6f3abdea (patch) | |
tree | bb73191ab1b1ed44e9916644e3fc1a2e9ad09e0b /src/corelib | |
parent | ecc152d7debac7cd78e3239c148fc873910d21f1 (diff) | |
download | fpGUI-59f9a7513fe58a046b789caf881e432b6f3abdea.tar.xz |
TfpgMemo now has BeginUpdate and EndUpdate methods
This allows you to add/delete many lines and the memo only
repaints once.
Diffstat (limited to 'src/corelib')
-rw-r--r-- | src/corelib/fpg_widget.pas | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/corelib/fpg_widget.pas b/src/corelib/fpg_widget.pas index f2d220db..f0c7f514 100644 --- a/src/corelib/fpg_widget.pas +++ b/src/corelib/fpg_widget.pas @@ -137,7 +137,7 @@ type procedure InternalHandleShow; virtual; procedure HandleHide; virtual; procedure MoveAndResize(ALeft, ATop, AWidth, AHeight: TfpgCoord); - procedure RePaint; + procedure RePaint; virtual; { property events } property OnClick: TNotifyEvent read FOnClick write FOnClick; property OnDoubleClick: TMouseButtonEvent read FOnDoubleClick write FOnDoubleClick; |