summaryrefslogtreecommitdiff
path: root/pkgui.c
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2018-08-26 13:33:54 -0400
committerPietro Gagliardi <[email protected]>2018-08-26 13:33:54 -0400
commit1095719d84a6ac5f90eefe8e23913f3e09ad692d (patch)
treeca7352bf6922e3f0bcf1ee4d5007c8515b681729 /pkgui.c
parent2bc76219286dfe39949772ceee4dbd9560ec2c1f (diff)
Migrated more controls.
Diffstat (limited to 'pkgui.c')
-rw-r--r--pkgui.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/pkgui.c b/pkgui.c
index b6871a3..643f50e 100644
--- a/pkgui.c
+++ b/pkgui.c
@@ -36,3 +36,18 @@ void pkguiCheckboxOnToggled(uiCheckbox *c)
{
uiCheckboxOnToggled(c, pkguiDoCheckboxOnToggled, NULL);
}
+
+void pkguiComboboxOnSelected(uiCombobox *c)
+{
+ uiComboboxOnSelected(c, pkguiDoComboboxOnSelected, NULL);
+}
+
+void pkguiEditableComboboxOnChanged(uiEditableCombobox *c)
+{
+ uiEditableComboboxOnChanged(c, pkguiDoEditableComboboxOnChanged, NULL);
+}
+
+void pkguiEntryOnChanged(uiEntry *e)
+{
+ uiEntryOnChanged(e, pkguiDoEntryOnChanged, NULL);
+}