summaryrefslogtreecommitdiff
path: root/indra/newview/llpanelprofile.cpp
diff options
context:
space:
mode:
authorBrad Payne (Vir Linden) <vir@lindenlab.com>2010-10-21 14:41:42 -0400
committerBrad Payne (Vir Linden) <vir@lindenlab.com>2010-10-21 14:41:42 -0400
commit53eeee7b70a80e718b8331bde66848fdfbe77355 (patch)
tree0678246599df08d3eba65270391633983054df5c /indra/newview/llpanelprofile.cpp
parentdd1b70f712849b7d0c96f0720e28453121b2bf1e (diff)
support for edit classified slapp
Diffstat (limited to 'indra/newview/llpanelprofile.cpp')
-rwxr-xr-xindra/newview/llpanelprofile.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/indra/newview/llpanelprofile.cpp b/indra/newview/llpanelprofile.cpp
index 1268c181ad..0b5975195d 100755
--- a/indra/newview/llpanelprofile.cpp
+++ b/indra/newview/llpanelprofile.cpp
@@ -205,6 +205,17 @@ void LLPanelProfile::onOpen(const LLSD& key)
picks->openClassifiedInfo(params);
}
}
+ else if (panel == "edit_classified")
+ {
+ LLPanelPicks* picks = dynamic_cast<LLPanelPicks *>(getTabContainer()[PANEL_PICKS]);
+ if (picks)
+ {
+ LLSD params = key;
+ params.erase("show_tab_panel");
+ params.erase("open_tab_name");
+ picks->openClassifiedEdit(params);
+ }
+ }
}
}