From a0329ba878eecc2606e42805b1a7876be4ae7eba Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Sun, 3 May 2015 13:54:42 -0400 Subject: [PATCH] Moved ui.idl TODOs to TODO.md since they're long-term. --- TODO.md | 3 +++ ui.idl | 3 --- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/TODO.md b/TODO.md index ea863317..81d4d024 100644 --- a/TODO.md +++ b/TODO.md @@ -44,6 +44,9 @@ - Windows: don't abort if a cleanup function fails? - should uiWindowOnClosing() really return an int? - if so, should the default return 0 instead of 1? +- note that uiInitOptions should be initialized to zero + - have a cbSize member +- drop "Page" from uiTab method names? (uiTabAppendPage() -> uiTabAppend()) ultimately: - add some sort of runtime type checking diff --git a/ui.idl b/ui.idl index 6de4e4a5..6ea37451 100644 --- a/ui.idl +++ b/ui.idl @@ -12,9 +12,7 @@ raw "#ifndef _UI_EXTERN"; raw "#define _UI_EXTERN extern"; raw "#endif"; -// TODO note that should be initialized to zero struct InitOptions { - // TODO cbSize }; func Init(options *InitOptions) *const char; @@ -101,7 +99,6 @@ interface Label from Control { func NewLabel(text *const char) *Label; interface Tab from Control { - // TODO remove Page from these? func AppendPage(name *const char, c *Control); func DeletePage(index uintmax_t); func NumPages(void) uintmax_t;