diff options
author | Tofu Linden <tofu.linden@lindenlab.com> | 2010-09-29 12:23:15 +0100 |
---|---|---|
committer | Tofu Linden <tofu.linden@lindenlab.com> | 2010-09-29 12:23:15 +0100 |
commit | 7007896f9811022c58fab6e7e320dfb6773b1a71 (patch) | |
tree | eb13f0be202975c7c1ce8093def9d31b1fe9f058 | |
parent | e73e8de56fc2a0fd35cde975f82ead1a02112cbe (diff) |
trivial comment changes.
-rw-r--r-- | indra/newview/llscriptfloater.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/indra/newview/llscriptfloater.cpp b/indra/newview/llscriptfloater.cpp index 825ee0823d..53a5881f4b 100644 --- a/indra/newview/llscriptfloater.cpp +++ b/indra/newview/llscriptfloater.cpp @@ -583,12 +583,12 @@ bool LLScriptFloater::isScriptTextbox(LLNotificationPtr notification) if (form) { - // get number of elements + // get number of elements in the form int num_options = form->getNumElements(); - // if ANY of the buttons have the magic lltextbox string as name, then - // treat the whole dialog as a simple text entry box (i.e. mixed button - // and textbox forms are not supported) + // if ANY of the buttons have the magic lltextbox string as + // name, then treat the whole dialog as a simple text entry + // box (i.e. mixed button and textbox forms are not supported) for (int i=0; i<num_options; ++i) { LLSD form_element = form->getElement(i); |