aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/llfloaterreporter.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'linden/indra/newview/llfloaterreporter.cpp')
-rw-r--r--linden/indra/newview/llfloaterreporter.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/linden/indra/newview/llfloaterreporter.cpp b/linden/indra/newview/llfloaterreporter.cpp
index bcbab5b..7e6bf4d 100644
--- a/linden/indra/newview/llfloaterreporter.cpp
+++ b/linden/indra/newview/llfloaterreporter.cpp
@@ -325,6 +325,8 @@ void LLFloaterReporter::getObjectInfo(const LLUUID& object_id)
325 } 325 }
326 childSetText("object_name", object_owner); 326 childSetText("object_name", object_owner);
327 childSetText("owner_name", object_owner); 327 childSetText("owner_name", object_owner);
328 childSetText("abuser_name_edit", object_owner);
329 mAbuserID = object_id;
328 } 330 }
329 else 331 else
330 { 332 {
@@ -576,10 +578,12 @@ LLFloaterReporter* LLFloaterReporter::createNewBugReporter()
576 578
577 579
578 580
579void LLFloaterReporter::setPickedObjectProperties(const char *object_name, const char *owner_name) 581void LLFloaterReporter::setPickedObjectProperties(const char *object_name, const char *owner_name, const LLUUID owner_id)
580{ 582{
581 childSetText("object_name", object_name); 583 childSetText("object_name", object_name);
582 childSetText("owner_name", owner_name); 584 childSetText("owner_name", owner_name);
585 childSetText("abuser_name_edit", owner_name);
586 mAbuserID = owner_id;
583} 587}
584 588
585 589