aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/llfloaterclassified.cpp
diff options
context:
space:
mode:
authorJacek Antonelli2008-08-15 23:45:19 -0500
committerJacek Antonelli2008-08-15 23:45:19 -0500
commitb235c59d60472f818a9142c0886b95a0ff4191d7 (patch)
treed323c55587584b19cc43a03f58a178823f12d3cd /linden/indra/newview/llfloaterclassified.cpp
parentSecond Life viewer sources 1.18.5.3 (diff)
downloadmeta-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/llfloaterclassified.cpp')
-rw-r--r--linden/indra/newview/llfloaterclassified.cpp4
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{
47public: 47public:
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;