diff options
author | corvid <devnull@localhost> | 2015-02-02 22:23:45 +0000 |
---|---|---|
committer | corvid <devnull@localhost> | 2015-02-02 22:23:45 +0000 |
commit | 74a4875a72db4bbfd09432de7ed46445eccadb1a (patch) | |
tree | 965b2139bc7ba81c893ed5e666799349fd76d932 /dw/fltkplatform.cc | |
parent | 014a83d2f53cd49bd2540c53ee56f26d880fe2f5 (diff) |
TEXTAREA placeholder attribute
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 67b04688..948c1444 100644 --- a/dw/fltkplatform.cc +++ b/dw/fltkplatform.cc @@ -422,9 +422,10 @@ FltkPlatform::FltkResourceFactory::createEntryResource (int size, core::ui::MultiLineTextResource * FltkPlatform::FltkResourceFactory::createMultiLineTextResource (int cols, - int rows) + int rows, + const char *placeholder) { - return new ui::FltkMultiLineTextResource (platform, cols, rows); + return new ui::FltkMultiLineTextResource (platform, cols, rows,placeholder); } core::ui::CheckButtonResource * |