summaryrefslogtreecommitdiff
path: root/extras/tiopf/gui/tiMediators.pas
diff options
context:
space:
mode:
Diffstat (limited to 'extras/tiopf/gui/tiMediators.pas')
-rw-r--r--extras/tiopf/gui/tiMediators.pas7
1 files changed, 3 insertions, 4 deletions
diff --git a/extras/tiopf/gui/tiMediators.pas b/extras/tiopf/gui/tiMediators.pas
index 2cc11bbb..ee5abb9c 100644
--- a/extras/tiopf/gui/tiMediators.pas
+++ b/extras/tiopf/gui/tiMediators.pas
@@ -546,11 +546,10 @@ begin
end;
except
on E: Exception do
- raise Exception.CreateFmt('Error adding list items to combobox ' +
+ raise EMediator.CreateFmt('Error adding list items to combobox ' +
'Message: %s, Item Property Name: %s',
[E.message, FieldName]);
end;
-
ObjectToGui;
end;
@@ -616,13 +615,13 @@ begin
Exit; //==>
if not Assigned(ValueList) then
- raise EtiOPFProgrammerException.Create(cErrorListHasNotBeenAssigned);
+ raise EMediator.Create(cErrorListHasNotBeenAssigned);
lPropType := typinfo.PropType(Subject, FieldName);
if lPropType = tkClass then
lValue := TtiObject(typinfo.GetObjectProp(Subject, FieldName))
else
- raise Exception.Create('Property is not a class type!');
+ raise EMediator.Create('Property is not a class type!');
for i := 0 to ValueList.Count - 1 do
if ValueList.Items[i] = lValue then