diff options
Diffstat (limited to '')
-rw-r--r-- | linden/indra/newview/llfloaterclassified.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/linden/indra/newview/llfloaterclassified.cpp b/linden/indra/newview/llfloaterclassified.cpp index aa57c6f..cc5ee59 100644 --- a/linden/indra/newview/llfloaterclassified.cpp +++ b/linden/indra/newview/llfloaterclassified.cpp | |||
@@ -46,7 +46,7 @@ class LLClassifiedHandler : public LLCommandHandler | |||
46 | { | 46 | { |
47 | public: | 47 | public: |
48 | LLClassifiedHandler() : LLCommandHandler("classified") { } | 48 | LLClassifiedHandler() : LLCommandHandler("classified") { } |
49 | bool handle(const std::vector<std::string>& tokens) | 49 | bool handle(const LLSD& tokens, const LLSD& queryMap) |
50 | { | 50 | { |
51 | if (tokens.size() < 2) | 51 | if (tokens.size() < 2) |
52 | { | 52 | { |
@@ -58,7 +58,7 @@ public: | |||
58 | return false; | 58 | return false; |
59 | } | 59 | } |
60 | 60 | ||
61 | if (tokens[1] == "about") | 61 | if (tokens[1].asString() == "about") |
62 | { | 62 | { |
63 | LLFloaterClassifiedInfo::show(classified_id); | 63 | LLFloaterClassifiedInfo::show(classified_id); |
64 | return true; | 64 | return true; |