diff options
author | Jorge Arellano Cid <jcid@dillo.org> | 2009-01-05 17:12:43 -0300 |
---|---|---|
committer | Jorge Arellano Cid <jcid@dillo.org> | 2009-01-05 17:12:43 -0300 |
commit | f7fc073ac0de5326cffee25fd3e94c4d0b385136 (patch) | |
tree | ec3b76e4436c6266369151308155705c822b66ea /dw/fltkplatform.cc | |
parent | 58e0045791b62f309066e446a314cd26bc277a8b (diff) |
Added a right-click menu to the form submit button (allows to show hiddens)
Diffstat (limited to 'dw/fltkplatform.cc')
-rw-r--r-- | dw/fltkplatform.cc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/dw/fltkplatform.cc b/dw/fltkplatform.cc index 337f4dba..1dc1c860 100644 --- a/dw/fltkplatform.cc +++ b/dw/fltkplatform.cc @@ -200,9 +200,10 @@ FltkPlatform::FltkResourceFactory::createOptionMenuResource () core::ui::EntryResource * FltkPlatform::FltkResourceFactory::createEntryResource (int maxLength, - bool password) + bool password, + const char *label) { - return new ui::FltkEntryResource (platform, maxLength, password); + return new ui::FltkEntryResource (platform, maxLength, password, label); } core::ui::MultiLineTextResource * |