summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgraemeg <graemeg@ae50a9b5-8222-0410-bf8d-8a13f76226bf>2009-03-09 09:45:12 +0000
committergraemeg <graemeg@ae50a9b5-8222-0410-bf8d-8a13f76226bf>2009-03-09 09:45:12 +0000
commit8a1355888d27675996e52c95c7c92f82c1243cb5 (patch)
tree45c411841e395e77354c6198c26f6717918ea5a8
parentde3e52e6ece3138503ac255908a937a15d76e83f (diff)
downloadfpGUI-8a1355888d27675996e52c95c7c92f82c1243cb5.tar.xz
Apparently order of reintroduce and overloaded is supposed to be important.
-rw-r--r--extras/tiopf/demos/Demo_21_AdrsBook_MGM/model.pas2
1 files changed, 1 insertions, 1 deletions
diff --git a/extras/tiopf/demos/Demo_21_AdrsBook_MGM/model.pas b/extras/tiopf/demos/Demo_21_AdrsBook_MGM/model.pas
index 3ffa07c3..643fe7c0 100644
--- a/extras/tiopf/demos/Demo_21_AdrsBook_MGM/model.pas
+++ b/extras/tiopf/demos/Demo_21_AdrsBook_MGM/model.pas
@@ -35,7 +35,7 @@ type
protected
function GetCaption: string; override;
public
- constructor CreateNew(const AISO: string; const AName: string); overload; reintroduce;
+ constructor CreateNew(const AISO: string; const AName: string); reintroduce; overload;
published
property ISO: string read FISO write SetISO;
property Name: string read FName write SetName;