diff options
author | Jacek Antonelli | 2008-08-15 23:45:19 -0500 |
---|---|---|
committer | Jacek Antonelli | 2008-08-15 23:45:19 -0500 |
commit | b235c59d60472f818a9142c0886b95a0ff4191d7 (patch) | |
tree | d323c55587584b19cc43a03f58a178823f12d3cd /linden/indra/newview/llfloaterparcel.cpp | |
parent | Second Life viewer sources 1.18.5.3 (diff) | |
download | meta-impy-b235c59d60472f818a9142c0886b95a0ff4191d7.zip meta-impy-b235c59d60472f818a9142c0886b95a0ff4191d7.tar.gz meta-impy-b235c59d60472f818a9142c0886b95a0ff4191d7.tar.bz2 meta-impy-b235c59d60472f818a9142c0886b95a0ff4191d7.tar.xz |
Second Life viewer sources 1.18.6.0-RC
Diffstat (limited to 'linden/indra/newview/llfloaterparcel.cpp')
-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; |