diff options
| author | Pietro Gagliardi <[email protected]> | 2015-04-08 16:27:45 -0400 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2015-04-08 16:27:45 -0400 |
| commit | 6d7140160bb4acf3330ccdd139ece1312614034b (patch) | |
| tree | 352ae3bf03dcbb42b80ba421e5334b03c1e6a9d9 | |
| parent | abf976ef44f1241433dbacd68481cf3b18ca194f (diff) | |
Decided not to turn new control scrolling parameters into a bitfield.
| -rw-r--r-- | new/newcontrol_darwin.m | 1 | ||||
| -rw-r--r-- | new/newcontrol_unix.c | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/new/newcontrol_darwin.m b/new/newcontrol_darwin.m index 4586331..04f6c1c 100644 --- a/new/newcontrol_darwin.m +++ b/new/newcontrol_darwin.m @@ -67,7 +67,6 @@ uiControl *uiDarwinNewControl(Class class, BOOL inScrollView, BOOL scrollViewHas c->view = (NSView *) [[class alloc] initWithFrame:NSZeroRect]; c->immediate = c->view; - // TODO turn into bit field? if (inScrollView) { c->scrollView = [[NSScrollView alloc] initWithFrame:NSZeroRect]; [c->scrollView setDocumentView:c->view]; diff --git a/new/newcontrol_unix.c b/new/newcontrol_unix.c index e032f8b..c883a5a 100644 --- a/new/newcontrol_unix.c +++ b/new/newcontrol_unix.c @@ -72,7 +72,6 @@ uiControl *uiUnixNewControl(GType type, gboolean inScrolledWindow, gboolean scro va_end(ap); c->immediate = c->widget; - // TODO turn into bit field? if (inScrolledWindow) { c->scrolledWindow = gtk_scrolled_window_new(NULL, NULL); if (!GTK_IS_SCROLLABLE(c->widget)) |
