diff options
Diffstat (limited to '')
-rw-r--r-- | linden/indra/newview/llfloaterparcel.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/linden/indra/newview/llfloaterparcel.cpp b/linden/indra/newview/llfloaterparcel.cpp index a63987a..8cb91a0 100644 --- a/linden/indra/newview/llfloaterparcel.cpp +++ b/linden/indra/newview/llfloaterparcel.cpp | |||
@@ -42,7 +42,7 @@ class LLParcelHandler : public LLCommandHandler | |||
42 | { | 42 | { |
43 | public: | 43 | public: |
44 | LLParcelHandler() : LLCommandHandler("parcel") { } | 44 | LLParcelHandler() : LLCommandHandler("parcel") { } |
45 | bool handle(const std::vector<std::string>& params) | 45 | bool handle(const LLSD& params, const LLSD& queryMap) |
46 | { | 46 | { |
47 | if (params.size() < 2) | 47 | if (params.size() < 2) |
48 | { | 48 | { |
@@ -53,7 +53,7 @@ public: | |||
53 | { | 53 | { |
54 | return false; | 54 | return false; |
55 | } | 55 | } |
56 | if (params[1] == "about") | 56 | if (params[1].asString() == "about") |
57 | { | 57 | { |
58 | LLFloaterParcelInfo::show(parcel_id); | 58 | LLFloaterParcelInfo::show(parcel_id); |
59 | return true; | 59 | return true; |