diff options
author | corvid <devnull@localhost> | 2015-01-22 08:51:02 +0000 |
---|---|---|
committer | corvid <devnull@localhost> | 2015-01-22 08:51:02 +0000 |
commit | 874c68b4235eb459d94af9622f28bad91028b3c9 (patch) | |
tree | 7210183ab468b0a7a881b1a6fab4edbecbf6501f /dw/fltkplatform.cc | |
parent | 9ff7e6783ebe9122a8d15b2891936223bc7f2b87 (diff) |
INPUT placeholder attribute
Diffstat (limited to 'dw/fltkplatform.cc')
-rw-r--r-- | dw/fltkplatform.cc | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/dw/fltkplatform.cc b/dw/fltkplatform.cc index 2fc7ff41..67b04688 100644 --- a/dw/fltkplatform.cc +++ b/dw/fltkplatform.cc @@ -413,9 +413,11 @@ FltkPlatform::FltkResourceFactory::createOptionMenuResource () core::ui::EntryResource * FltkPlatform::FltkResourceFactory::createEntryResource (int size, bool password, - const char *label) + const char *label, + const char *placeholder) { - return new ui::FltkEntryResource (platform, size, password, label); + return new ui::FltkEntryResource (platform, size, password, label, + placeholder); } core::ui::MultiLineTextResource * |