summaryrefslogtreecommitdiff
path: root/extras
diff options
context:
space:
mode:
authorgraemeg <graemeg@ae50a9b5-8222-0410-bf8d-8a13f76226bf>2008-06-02 09:15:19 +0000
committergraemeg <graemeg@ae50a9b5-8222-0410-bf8d-8a13f76226bf>2008-06-02 09:15:19 +0000
commit78b4dd4f902644763da65a89f4d63f5e292b4a31 (patch)
tree521d65dc075e2268013fc2964f9b0f0e7c075dbf /extras
parent6de378ee40f1f2170ca7cba2163a79e320b8ffa8 (diff)
downloadfpGUI-78b4dd4f902644763da65a89f4d63f5e292b4a31.tar.xz
* It's now possible to refresh the internal list of the TMediatorDynamicComboBoxView.
Diffstat (limited to 'extras')
-rw-r--r--extras/tiopf/gui/tiGenericEditMediators.pas6
1 files changed, 6 insertions, 0 deletions
diff --git a/extras/tiopf/gui/tiGenericEditMediators.pas b/extras/tiopf/gui/tiGenericEditMediators.pas
index 6ddb345b..b59113c2 100644
--- a/extras/tiopf/gui/tiGenericEditMediators.pas
+++ b/extras/tiopf/gui/tiGenericEditMediators.pas
@@ -184,6 +184,7 @@ type
destructor Destroy; override;
procedure GuiToObject; override;
procedure ObjectToGui; override;
+ procedure RefreshList; virtual;
property List: TtiObjectList read FList write SetList;
end;
@@ -875,6 +876,11 @@ begin
SetOnChangeActive(true);
end;
+procedure TMediatorDynamicComboBoxView.RefreshList;
+begin
+ InternalListRefresh;
+end;
+
{ TMediatorCheckBoxView }
function TMediatorCheckBoxView.GetEditControl: TfpgCheckBox;