summaryrefslogtreecommitdiff
path: root/indra/newview
diff options
context:
space:
mode:
authorbrad kittenbrink <brad@lindenlab.com>2009-07-01 18:47:48 -0400
committerbrad kittenbrink <brad@lindenlab.com>2009-07-01 18:47:48 -0400
commitb082b5c9de83733f3d702a35ce60e6c0f61f7dc1 (patch)
tree4625fce9d0e7fa8a3da2fbfa59b4680b2a57c96d /indra/newview
parenta14a19e33ac2a28b640ebbad514e9829f999a5f3 (diff)
Backed out setSetting listener: changeset 3c9127748425
Diffstat (limited to 'indra/newview')
-rw-r--r--indra/newview/llappviewerlistener.cpp13
-rw-r--r--indra/newview/llappviewerlistener.h1
2 files changed, 0 insertions, 14 deletions
diff --git a/indra/newview/llappviewerlistener.cpp b/indra/newview/llappviewerlistener.cpp
index befebae88e..a8c98b17a7 100644
--- a/indra/newview/llappviewerlistener.cpp
+++ b/indra/newview/llappviewerlistener.cpp
@@ -18,7 +18,6 @@
// external library headers
// other Linden headers
#include "llappviewer.h"
-#include "llviewercontrol.h"
LLAppViewerListener::LLAppViewerListener(const std::string& pumpname, LLAppViewer* llappviewer):
LLDispatchListener(pumpname, "op"),
@@ -26,21 +25,9 @@ LLAppViewerListener::LLAppViewerListener(const std::string& pumpname, LLAppViewe
{
// add() every method we want to be able to invoke via this event API.
add("requestQuit", &LLAppViewerListener::requestQuit);
- add("setSetting", &LLAppViewerListener::setSetting);
}
void LLAppViewerListener::requestQuit(const LLSD& event) const
{
mAppViewer->requestQuit();
}
-
-void LLAppViewerListener::setSetting(const LLSD & event) const
-{
- std::string control_name = event["name"].asString();
- if (gSavedSettings.controlExists(control_name))
- {
- LLControlVariable* control = gSavedSettings.getControl(control_name);
-
- control->set(event["value"]);
- }
-}
diff --git a/indra/newview/llappviewerlistener.h b/indra/newview/llappviewerlistener.h
index ff63b69c13..ab17dd1d90 100644
--- a/indra/newview/llappviewerlistener.h
+++ b/indra/newview/llappviewerlistener.h
@@ -27,7 +27,6 @@ public:
private:
void requestQuit(const LLSD& event) const;
- void setSetting(const LLSD & event) const;
LLAppViewer* mAppViewer;
};