summaryrefslogtreecommitdiff
path: root/indra/newview/llfloaterparcel.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'indra/newview/llfloaterparcel.cpp')
-rw-r--r--indra/newview/llfloaterparcel.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llfloaterparcel.cpp b/indra/newview/llfloaterparcel.cpp
index 61b7176153..f737188b34 100644
--- a/indra/newview/llfloaterparcel.cpp
+++ b/indra/newview/llfloaterparcel.cpp
@@ -29,7 +29,7 @@ class LLParcelHandler : public LLCommandHandler
{
public:
LLParcelHandler() : LLCommandHandler("parcel") { }
- bool handle(const std::vector<std::string>& params)
+ bool handle(const LLSD& params, const LLSD& queryMap)
{
if (params.size() < 2)
{
@@ -40,7 +40,7 @@ public:
{
return false;
}
- if (params[1] == "about")
+ if (params[1].asString() == "about")
{
LLFloaterParcelInfo::show(parcel_id);
return true;