diff options
| author | Tess Chu <tess@lindenlab.com> | 2007-11-15 19:22:19 +0000 |
|---|---|---|
| committer | Tess Chu <tess@lindenlab.com> | 2007-11-15 19:22:19 +0000 |
| commit | 291d99bc66c4c2b8009ba723a43e2e97d24313f9 (patch) | |
| tree | 60991ea5744899ac7ac096a4130e43238768db20 /indra/newview/llfloaterparcel.cpp | |
| parent | 138bf17c3c51cbf3826a05887d73c49908025f95 (diff) | |
svn merge -r73220:73877 svn+ssh://svn/svn/linden/branches/viewer-auth-6
Diffstat (limited to 'indra/newview/llfloaterparcel.cpp')
| -rw-r--r-- | indra/newview/llfloaterparcel.cpp | 4 |
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; |
