diff options
author | dolphin <dolphin@lindenlab.com> | 2014-04-16 17:39:06 -0700 |
---|---|---|
committer | dolphin <dolphin@lindenlab.com> | 2014-04-16 17:39:06 -0700 |
commit | a58d31f6029ab6907a3c89a9ae826fe648c7910e (patch) | |
tree | 8199553e3af70d5982912ec3c99358fbbb57f516 /indra/newview/llfloaterregioninfo.cpp | |
parent | 3320709c2a93b5101261e708e0220cfa38683d19 (diff) |
Fix linux build
Diffstat (limited to 'indra/newview/llfloaterregioninfo.cpp')
-rwxr-xr-x | indra/newview/llfloaterregioninfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llfloaterregioninfo.cpp b/indra/newview/llfloaterregioninfo.cpp index 28f5788054..2522b7bf18 100755 --- a/indra/newview/llfloaterregioninfo.cpp +++ b/indra/newview/llfloaterregioninfo.cpp @@ -3690,7 +3690,7 @@ void LLPanelRegionExperiences::itemChanged( U32 event_type, const LLUUID& id ) { strings_t str(3, std::string()); gAgent.getID().toString(str[0]); - str[1].swap(llformat("%u", event_type)); + str[1] = llformat("%u", event_type); id.toString(str[2]); sendEstateOwnerMessage(gMessageSystem, "estateexperiencedelta", LLFloaterRegionInfo::getLastInvoice(), str); |