diff options
author | Jonas Suhr Christensen <jsc@umbraculum.org> | 2013-05-15 18:14:01 +0200 |
---|---|---|
committer | Jonas Suhr Christensen <jsc@umbraculum.org> | 2013-05-15 18:14:01 +0200 |
commit | 976ce209938be1bfc088d5f6cdd523a4089e1dd0 (patch) | |
tree | 8ef16aeefd3a4d9a675dc140c0daa84bdf8bb9b0 /plugingui/listbox.cc | |
parent | b61c55a43c21a95234d79f6afd9a64964f5fffec (diff) |
Make it possible to type a path and have browser switch accordingly.
Diffstat (limited to 'plugingui/listbox.cc')
-rw-r--r-- | plugingui/listbox.cc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/plugingui/listbox.cc b/plugingui/listbox.cc index 3647753..ed873b2 100644 --- a/plugingui/listbox.cc +++ b/plugingui/listbox.cc @@ -82,6 +82,11 @@ std::string GUI::ListBox::selectedValue() return basic->selectedValue(); } +void GUI::ListBox::clearSelectedValue() +{ + basic->clearSelectedValue(); +} + void GUI::ListBox::registerClickHandler(void (*handler)(void *), void *ptr) { basic->registerClickHandler(handler, ptr); |