From 2642a1c3ffee1442319aab57200b744b53c82a93 Mon Sep 17 00:00:00 2001 From: Inusaito Sayori Date: Sat, 14 Dec 2013 00:00:52 -0500 Subject: [PATCH] [Warnings] Fix class/struct inconsistency. --- indra/llui/llnotifications.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/indra/llui/llnotifications.cpp b/indra/llui/llnotifications.cpp index 400d80d64..f066ef6dc 100644 --- a/indra/llui/llnotifications.cpp +++ b/indra/llui/llnotifications.cpp @@ -1508,8 +1508,9 @@ LLNotificationPtr LLNotifications::add(AIAlert::Error const& error, int type, un // Allow LLNotifications::add, LLNotifications::cancel and LLNotifications::update // to be called from any thread. -struct UpdateItem +class UpdateItem { +public: char const* sigtype; LLNotificationPtr pNotif; UpdateItem(char const* st, LLNotificationPtr const& np) : sigtype(st), pNotif(np) { }