diff options
author | corvid <corvid@lavabit.com> | 2012-11-25 01:54:16 +0000 |
---|---|---|
committer | corvid <corvid@lavabit.com> | 2012-11-25 01:54:16 +0000 |
commit | 975fc68c4d5bd9ce6ca2e536f4c8a3c6d59962b9 (patch) | |
tree | 5e1893c5946abc0d71265b60bbeab78b7a3a392e /dw/fltkplatform.cc | |
parent | fae8ba37e74976b59ab41932d3b2c2165c688d91 (diff) |
dw entry resource, mentions of maxLength should be size
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 d8e95a6e..7dd87a18 100644 --- a/dw/fltkplatform.cc +++ b/dw/fltkplatform.cc @@ -419,11 +419,11 @@ FltkPlatform::FltkResourceFactory::createOptionMenuResource () } core::ui::EntryResource * -FltkPlatform::FltkResourceFactory::createEntryResource (int maxLength, +FltkPlatform::FltkResourceFactory::createEntryResource (int size, bool password, const char *label) { - return new ui::FltkEntryResource (platform, maxLength, password, label); + return new ui::FltkEntryResource (platform, size, password, label); } core::ui::MultiLineTextResource * |