summaryrefslogtreecommitdiff
path: root/new/ui.h
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2015-04-09 23:47:03 -0400
committerPietro Gagliardi <[email protected]>2015-04-09 23:48:04 -0400
commit64b746c9a11ad644c0482824c59bd5542e5697b3 (patch)
treeeed8cb341240bf08e9c2f14e748b7b02eb9289a6 /new/ui.h
parenta9115b352c5b1ec6ba37c483d69d816757652d72 (diff)
Decided that uiCheckboxSetChecked() should NOT trigger an event. This required changing the GTK+ backend to make it so; the Windows and Mac OS X backends are fine (setting their checkbox state programmatically will not send a signal; thanks to ThunderSnow in irc.freenode.net/#macdev for confirming this for Mac OS X).
Diffstat (limited to 'new/ui.h')
-rw-r--r--new/ui.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/new/ui.h b/new/ui.h
index 7013a36..a692585 100644
--- a/new/ui.h
+++ b/new/ui.h
@@ -85,7 +85,6 @@ char *uiCheckboxText(uiControl *);
void uiCheckboxSetText(uiControl *, const char *);
void uiCheckboxOnToggled(uiControl *, void (*)(uiControl *, void *), void *);
int uiCheckboxChecked(uiControl *);
-// TODO should this trigger an event?
void uiCheckboxSetChecked(uiControl *, int);
#endif