aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/llviewermenu.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'linden/indra/newview/llviewermenu.cpp')
-rw-r--r--linden/indra/newview/llviewermenu.cpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/linden/indra/newview/llviewermenu.cpp b/linden/indra/newview/llviewermenu.cpp
index ae37d96..a97ec18 100644
--- a/linden/indra/newview/llviewermenu.cpp
+++ b/linden/indra/newview/llviewermenu.cpp
@@ -86,6 +86,7 @@
86#include "llfloateravatarinfo.h" 86#include "llfloateravatarinfo.h"
87#include "llfloateravatartextures.h" 87#include "llfloateravatartextures.h"
88#include "llfloaterbuildoptions.h" 88#include "llfloaterbuildoptions.h"
89#include "llfloaterbulkpermission.h"
89#include "llfloaterbump.h" 90#include "llfloaterbump.h"
90#include "llfloaterbuy.h" 91#include "llfloaterbuy.h"
91#include "llfloaterbuycontents.h" 92#include "llfloaterbuycontents.h"
@@ -6242,6 +6243,18 @@ void queue_actions(LLFloaterScriptQueue* q, const std::string& noscriptmsg, cons
6242 } 6243 }
6243} 6244}
6244 6245
6246
6247class LLToolsSetBulkPerms : public view_listener_t
6248{
6249 bool handleEvent(LLPointer<LLEvent> event, const LLSD& userdata)
6250 {
6251 LLFloaterBulkPermission* queue = NULL;
6252 queue = LLFloaterBulkPermission::create();
6253 return true;
6254 }
6255};
6256
6257
6245class LLToolsSelectedScriptAction : public view_listener_t 6258class LLToolsSelectedScriptAction : public view_listener_t
6246{ 6259{
6247 bool handleEvent(LLPointer<LLEvent> event, const LLSD& userdata) 6260 bool handleEvent(LLPointer<LLEvent> event, const LLSD& userdata)
@@ -9942,6 +9955,7 @@ void initialize_menus()
9942 addMenu(new LLToolsSaveToInventory(), "Tools.SaveToInventory"); 9955 addMenu(new LLToolsSaveToInventory(), "Tools.SaveToInventory");
9943 addMenu(new LLToolsSaveToObjectInventory(), "Tools.SaveToObjectInventory"); 9956 addMenu(new LLToolsSaveToObjectInventory(), "Tools.SaveToObjectInventory");
9944 addMenu(new LLToolsSelectedScriptAction(), "Tools.SelectedScriptAction"); 9957 addMenu(new LLToolsSelectedScriptAction(), "Tools.SelectedScriptAction");
9958 addMenu(new LLToolsSetBulkPerms(), "Tools.SetBulkPerms");
9945 9959
9946 addMenu(new LLToolsEnableToolNotPie(), "Tools.EnableToolNotPie"); 9960 addMenu(new LLToolsEnableToolNotPie(), "Tools.EnableToolNotPie");
9947 addMenu(new LLToolsEnableLink(), "Tools.EnableLink"); 9961 addMenu(new LLToolsEnableLink(), "Tools.EnableLink");