diff options
author | corvid <corvid@lavabit.com> | 2009-02-06 12:16:28 -0300 |
---|---|---|
committer | corvid <corvid@lavabit.com> | 2009-02-06 12:16:28 -0300 |
commit | ae27fe4f9716901efc6b14854402b32708ab331f (patch) | |
tree | 65b9bbf31643fe91fa280b269d80cfc59d13663c /dw/fltkplatform.cc | |
parent | ca9b558f4444e7f3e8bde5f72d2ec138ab6cb0ed (diff) |
Implemented size for SELECT lists
Diffstat (limited to 'dw/fltkplatform.cc')
-rw-r--r-- | dw/fltkplatform.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dw/fltkplatform.cc b/dw/fltkplatform.cc index e070b7d9..4338f0a8 100644 --- a/dw/fltkplatform.cc +++ b/dw/fltkplatform.cc @@ -182,9 +182,9 @@ core::ui::ListResource * FltkPlatform::FltkResourceFactory::createListResource (core::ui ::ListResource ::SelectionMode - selectionMode) + selectionMode, int rows) { - return new ui::FltkListResource (platform, selectionMode); + return new ui::FltkListResource (platform, selectionMode, rows); } core::ui::OptionMenuResource * |