diff options
Diffstat (limited to 'linden/indra/newview/llfloatergroupinfo.cpp')
-rw-r--r-- | linden/indra/newview/llfloatergroupinfo.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/linden/indra/newview/llfloatergroupinfo.cpp b/linden/indra/newview/llfloatergroupinfo.cpp index eb3b692..b274a51 100644 --- a/linden/indra/newview/llfloatergroupinfo.cpp +++ b/linden/indra/newview/llfloatergroupinfo.cpp | |||
@@ -56,7 +56,7 @@ class LLGroupHandler : public LLCommandHandler | |||
56 | { | 56 | { |
57 | public: | 57 | public: |
58 | LLGroupHandler() : LLCommandHandler("group") { } | 58 | LLGroupHandler() : LLCommandHandler("group") { } |
59 | bool handle(const std::vector<std::string>& tokens) | 59 | bool handle(const LLSD& tokens, const LLSD& queryMap) |
60 | { | 60 | { |
61 | if (tokens.size() < 2) | 61 | if (tokens.size() < 2) |
62 | { | 62 | { |
@@ -69,7 +69,7 @@ public: | |||
69 | return false; | 69 | return false; |
70 | } | 70 | } |
71 | 71 | ||
72 | if (tokens[1] == "about") | 72 | if (tokens[1].asString() == "about") |
73 | { | 73 | { |
74 | LLFloaterGroupInfo::showFromUUID(group_id); | 74 | LLFloaterGroupInfo::showFromUUID(group_id); |
75 | return true; | 75 | return true; |