Skip to content
Snippets Groups Projects
Commit c7c549b7 authored by Brad Payne (Vir Linden)'s avatar Brad Payne (Vir Linden)
Browse files

LLFloaterPermsResponder switched to new Responder API

parent 13b4909a
No related branches found
No related tags found
No related merge requests found
...@@ -42,6 +42,7 @@ ...@@ -42,6 +42,7 @@
</array> </array>
<key>tags</key> <key>tags</key>
<array> <array>
<string>Avatar</string>
<!-- sample entry for debugging specific items <!-- sample entry for debugging specific items
<string>Inventory</string> <string>Inventory</string>
<string>SceneLoadTiming</string> <string>SceneLoadTiming</string>
......
...@@ -35,6 +35,8 @@ ...@@ -35,6 +35,8 @@
#include "llagent.h" #include "llagent.h"
#include "llviewerregion.h" #include "llviewerregion.h"
#include "llnotificationsutil.h" #include "llnotificationsutil.h"
#include "llsdserialize.h"
#include "llvoavatar.h"
LLFloaterPerms::LLFloaterPerms(const LLSD& seed) LLFloaterPerms::LLFloaterPerms(const LLSD& seed)
: LLFloater(seed) : LLFloater(seed)
...@@ -171,8 +173,9 @@ class LLFloaterPermsResponder : public LLHTTPClient::Responder ...@@ -171,8 +173,9 @@ class LLFloaterPermsResponder : public LLHTTPClient::Responder
private: private:
static std::string sPreviousReason; static std::string sPreviousReason;
void error(U32 status, const std::string& reason) void httpFailure()
{ {
const std::string& reason = getReason();
// Do not display the same error more than once in a row // Do not display the same error more than once in a row
if (reason != sPreviousReason) if (reason != sPreviousReason)
{ {
...@@ -182,8 +185,12 @@ class LLFloaterPermsResponder : public LLHTTPClient::Responder ...@@ -182,8 +185,12 @@ class LLFloaterPermsResponder : public LLHTTPClient::Responder
LLNotificationsUtil::add("DefaultObjectPermissions", args); LLNotificationsUtil::add("DefaultObjectPermissions", args);
} }
} }
void result(const LLSD& content)
void httpSuccess()
{ {
//const LLSD& content = getContent();
//dump_sequential_xml("perms_responder_result.xml", content);
// Since we have had a successful POST call be sure to display the next error message // Since we have had a successful POST call be sure to display the next error message
// even if it is the same as a previous one. // even if it is the same as a previous one.
sPreviousReason = ""; sPreviousReason = "";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment