summaryrefslogtreecommitdiff
path: root/plugingui/listbox.cc
diff options
context:
space:
mode:
authorJonas Suhr Christensen <jsc@umbraculum.org>2013-05-15 18:14:01 +0200
committerJonas Suhr Christensen <jsc@umbraculum.org>2013-05-15 18:14:01 +0200
commit976ce209938be1bfc088d5f6cdd523a4089e1dd0 (patch)
tree8ef16aeefd3a4d9a675dc140c0daa84bdf8bb9b0 /plugingui/listbox.cc
parentb61c55a43c21a95234d79f6afd9a64964f5fffec (diff)
Make it possible to type a path and have browser switch accordingly.
Diffstat (limited to 'plugingui/listbox.cc')
-rw-r--r--plugingui/listbox.cc5
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);