summaryrefslogtreecommitdiff
path: root/extras
diff options
context:
space:
mode:
authorGraeme Geldenhuys <graeme@mastermaths.co.za>2010-04-19 12:51:44 +0200
committerGraeme Geldenhuys <graeme@mastermaths.co.za>2010-04-19 12:51:44 +0200
commit4d52b78497bc6c04f07ac45e12bf0bc70208505b (patch)
tree3dd2cf1510cfa84f3bab2d0e3384678f579fb92a /extras
parentbd177fb25368a83590e52e506cb1ebb538ddc87b (diff)
downloadfpGUI-4d52b78497bc6c04f07ac45e12bf0bc70208505b.tar.xz
tiopf: Incorrect cast used in mediators.
Damn this was hard to find!!! Copy and Paste is very evil!
Diffstat (limited to 'extras')
-rw-r--r--extras/tiopf/gui/tiMediators.pas43
1 files changed, 19 insertions, 24 deletions
diff --git a/extras/tiopf/gui/tiMediators.pas b/extras/tiopf/gui/tiMediators.pas
index 4a066a2b..b2dacea9 100644
--- a/extras/tiopf/gui/tiMediators.pas
+++ b/extras/tiopf/gui/tiMediators.pas
@@ -374,8 +374,7 @@ begin
THackBaseEdit(View).MaxLength := Ma;
end;
-procedure TtiBaseEditMediatorView.SetObjectUpdateMoment(
- const AValue: TtiObjectUpdateMoment);
+procedure TtiBaseEditMediatorView.SetObjectUpdateMoment(const AValue: TtiObjectUpdateMoment);
begin
inherited SetObjectUpdateMoment(AValue);
if View <> nil then
@@ -450,8 +449,7 @@ begin
end;
end;
-procedure TtiSpinEditMediatorView.SetObjectUpdateMoment(
- const AValue: TtiObjectUpdateMoment);
+procedure TtiSpinEditMediatorView.SetObjectUpdateMoment(const AValue: TtiObjectUpdateMoment);
begin
inherited SetObjectUpdateMoment(AValue);
if View <> nil then
@@ -462,8 +460,8 @@ begin
View.OnExit := @DoOnChange;
if ObjectUpdateMoment in [ouNone] then
begin
- THackbaseEdit(View).OnChange := nil;
- THackbaseEdit(View).OnExit := nil;
+ View.OnChange := nil;
+ View.OnExit := nil;
end;
end;
end;
@@ -510,8 +508,8 @@ begin
View.OnExit := @DoOnChange;
if ObjectUpdateMoment in [ouNone] then
begin
- THackbaseEdit(View).OnChange := nil;
- THackbaseEdit(View).OnExit := nil;
+ View.OnChange := nil;
+ View.OnExit := nil;
end;
end;
end;
@@ -567,8 +565,8 @@ begin
View.OnExit := @DoOnChange;
if ObjectUpdateMoment in [ouNone] then
begin
- THackbaseEdit(View).OnChange := nil;
- THackbaseEdit(View).OnExit := nil;
+ View.OnChange := nil;
+ View.OnExit := nil;
end;
end;
end;
@@ -597,8 +595,8 @@ begin
View.OnExit := @DoOnChange;
if ObjectUpdateMoment in [ouNone] then
begin
- THackbaseEdit(View).OnChange := nil;
- THackbaseEdit(View).OnExit := nil;
+ View.OnChange := nil;
+ View.OnExit := nil;
end;
end;
end;
@@ -761,8 +759,7 @@ end;
{ TtiCheckBoxMediatorView }
-procedure TtiCheckBoxMediatorView.SetObjectUpdateMoment(
- const AValue: TtiObjectUpdateMoment);
+procedure TtiCheckBoxMediatorView.SetObjectUpdateMoment(const AValue: TtiObjectUpdateMoment);
begin
inherited SetObjectUpdateMoment(AValue);
if View <> nil then
@@ -773,8 +770,8 @@ begin
View.OnExit := @DoOnChange;
if ObjectUpdateMoment in [ouNone] then
begin
- THackbaseEdit(View).OnChange := nil;
- THackbaseEdit(View).OnExit := nil;
+ View.OnChange := nil;
+ View.OnExit := nil;
end;
end;
end;
@@ -835,8 +832,7 @@ begin
end;
end;
-procedure TtiCalendarComboMediatorView.SetObjectUpdateMoment(
- const AValue: TtiObjectUpdateMoment);
+procedure TtiCalendarComboMediatorView.SetObjectUpdateMoment(const AValue: TtiObjectUpdateMoment);
begin
inherited SetObjectUpdateMoment(AValue);
if View <> nil then
@@ -847,8 +843,8 @@ begin
View.OnExit := @DoOnChange;
if ObjectUpdateMoment in [ouNone] then
begin
- THackbaseEdit(View).OnChange := nil;
- THackbaseEdit(View).OnExit := nil;
+ View.OnChange := nil;
+ View.OnExit := nil;
end;
end;
end;
@@ -902,8 +898,7 @@ begin
end;
end;
-procedure TtiSpinEditFloatMediatorView.SetObjectUpdateMoment(
- const AValue: TtiObjectUpdateMoment);
+procedure TtiSpinEditFloatMediatorView.SetObjectUpdateMoment(const AValue: TtiObjectUpdateMoment);
begin
inherited SetObjectUpdateMoment(AValue);
if View <> nil then
@@ -914,8 +909,8 @@ begin
View.OnExit := @DoOnChange;
if ObjectUpdateMoment in [ouNone] then
begin
- THackbaseEdit(View).OnChange := nil;
- THackbaseEdit(View).OnExit := nil;
+ View.OnChange := nil;
+ View.OnExit := nil;
end;
end;
end;