diff options
Diffstat (limited to 'extras')
-rw-r--r-- | extras/tiopf/gui/tiGenericEditMediators.pas | 6 |
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; |