more work done on copybootch function, save as xml works for the most part now

This commit is contained in:
Hazim Gazov
2010-05-01 10:24:24 -03:00
parent f0ba217dbe
commit e13f747a05
7 changed files with 94 additions and 5 deletions

View File

@@ -3012,6 +3012,38 @@ void process_grant_godlike_powers(LLMessageSystem* msg, void**)
}
}
// <edit>
void handle_reopen_with_hex_editor(void*)
{
LLFloater* top = gFloaterView->getFrontmost();
if (top)
{
LLUUID item_id = top->getItemID();
if(item_id.notNull())
{
LLInventoryItem* item = gInventory.getItem(item_id);
if(item)
{
DOFloaterHex::show(item_id);
}
}
}
}
void handle_close_all_notifications(void*)
{
LLView::child_list_t child_list(*(gNotifyBoxView->getChildList()));
for(LLView::child_list_iter_t iter = child_list.begin();
iter != child_list.end();
iter++)
{
gNotifyBoxView->removeChild(*iter);
}
}
// </edit>
/*
class LLHaveCallingcard : public LLInventoryCollectFunctor
{