diff options
author | Richard Linden <none@none> | 2012-03-27 22:56:02 -0700 |
---|---|---|
committer | Richard Linden <none@none> | 2012-03-27 22:56:02 -0700 |
commit | 1ea65f0285d7022ce20ef84d4e35e3c94bcb3fbd (patch) | |
tree | 5af1e50737b6a96f7a05ba6b5f5c5ac3c0f551b3 /indra/newview/llfloaternotificationsconsole.cpp | |
parent | b187aeb8f177bd76e792652e773617beff18b47b (diff) |
CHUI-51 WIP notifications routig code cleanup
phase 1, removal of most of llnotificationhandler
Diffstat (limited to 'indra/newview/llfloaternotificationsconsole.cpp')
-rw-r--r-- | indra/newview/llfloaternotificationsconsole.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llfloaternotificationsconsole.cpp b/indra/newview/llfloaternotificationsconsole.cpp index 2681d4b34d..90dbabebfb 100644 --- a/indra/newview/llfloaternotificationsconsole.cpp +++ b/indra/newview/llfloaternotificationsconsole.cpp @@ -57,7 +57,7 @@ LLNotificationChannelPanel::LLNotificationChannelPanel(const LLNotificationChann { mChannelPtr = LLNotifications::instance().getChannel(p.name); mChannelRejectsPtr = LLNotificationChannelPtr( - LLNotificationChannel::buildChannel(p.name() + "rejects", mChannelPtr->getParentChannelName(), + new LLNotificationChannel(p.name() + "rejects", mChannelPtr->getParentChannelName(), !boost::bind(mChannelPtr->getFilter(), _1))); buildFromFile( "panel_notifications_channel.xml"); } |