diff options
Diffstat (limited to 'linden/indra/llui/llpanel.cpp')
-rw-r--r-- | linden/indra/llui/llpanel.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/linden/indra/llui/llpanel.cpp b/linden/indra/llui/llpanel.cpp index d37517f..05103dc 100644 --- a/linden/indra/llui/llpanel.cpp +++ b/linden/indra/llui/llpanel.cpp | |||
@@ -982,12 +982,12 @@ void LLPanel::childSetAction(const std::string& id, void(*function)(void*), void | |||
982 | } | 982 | } |
983 | } | 983 | } |
984 | 984 | ||
985 | void LLPanel::childSetActionTextbox(const std::string& id, void(*function)(void*)) | 985 | void LLPanel::childSetActionTextbox(const std::string& id, void(*function)(void*), void* value) |
986 | { | 986 | { |
987 | LLTextBox* textbox = getChild<LLTextBox>(id); | 987 | LLTextBox* textbox = getChild<LLTextBox>(id); |
988 | if (textbox) | 988 | if (textbox) |
989 | { | 989 | { |
990 | textbox->setClickedCallback(function); | 990 | textbox->setClickedCallback(function, value); |
991 | } | 991 | } |
992 | } | 992 | } |
993 | 993 | ||