diff options
author | Graeme Geldenhuys <graemeg@users.sourceforge.net> | 2006-12-06 07:49:46 +0000 |
---|---|---|
committer | Graeme Geldenhuys <graemeg@users.sourceforge.net> | 2006-12-06 07:49:46 +0000 |
commit | 1ef11a6d9353b976aa51856b1909f28f8750670b (patch) | |
tree | 56bd40a7f115d553c260979fc48981201bed50bb /prototypes | |
parent | ef70fd0f2770f0e084400373e786050f8dca6eba (diff) | |
download | fpGUI-1ef11a6d9353b976aa51856b1909f28f8750670b.tar.xz |
Moved the inherited call in TWidget.ProcessEvent
Diffstat (limited to 'prototypes')
-rw-r--r-- | prototypes/multihandle/gui2Base.pas | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/prototypes/multihandle/gui2Base.pas b/prototypes/multihandle/gui2Base.pas index 6b9b6821..d7197f88 100644 --- a/prototypes/multihandle/gui2Base.pas +++ b/prototypes/multihandle/gui2Base.pas @@ -267,6 +267,7 @@ end; procedure TWidget.ProcessEvent(AEvent: TFEvent); begin + inherited ProcessEvent(AEvent); case AEvent.EventType of etPaint: begin @@ -274,7 +275,6 @@ begin end; end; { case } - inherited ProcessEvent(AEvent); end; procedure TWidget.SetFocus; |