From c7ffba4c8d0030bf5bf92dd4eef6fac6017c62bf Mon Sep 17 00:00:00 2001 From: MenTaLguY Date: Wed, 8 Feb 2006 04:15:29 +0000 Subject: share_static -> share_static_string (bzr r104) --- src/jabber_whiteboard/deserializer.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/jabber_whiteboard/deserializer.cpp') diff --git a/src/jabber_whiteboard/deserializer.cpp b/src/jabber_whiteboard/deserializer.cpp index 066557ad5..2df35e8ab 100644 --- a/src/jabber_whiteboard/deserializer.cpp +++ b/src/jabber_whiteboard/deserializer.cpp @@ -299,14 +299,14 @@ Deserializer::deserializeEventChgContent(Glib::ustring const& msg) if (MessageUtilities::findTag(buf, msg)) { oldval = Util::share_string(buf.data.c_str()); } else { - oldval = Util::share_static(""); + oldval = Util::share_static_string(""); } buf.tag = MESSAGE_NEWVAL; if (MessageUtilities::findTag(buf, msg)) { newval = Util::share_string(buf.data.c_str()); } else { - newval = Util::share_static(""); + newval = Util::share_static_string(""); } // 3. Find the node identified by the ID. If we cannot find it, return. @@ -348,7 +348,7 @@ Deserializer::deserializeEventChgAttr(Glib::ustring const& msg) if (MessageUtilities::findTag(buf, msg)) { newval = Util::share_string(buf.data.c_str()); } else { - newval = Util::share_static(""); + newval = Util::share_static_string(""); } // 3. Extract optional attributes: old value. If we do not find it in the message, @@ -358,7 +358,7 @@ Deserializer::deserializeEventChgAttr(Glib::ustring const& msg) if (MessageUtilities::findTag(buf, msg)) { oldval = Util::share_string(buf.data.c_str()); } else { - oldval = Util::share_static(""); + oldval = Util::share_static_string(""); } // 4. Look up this node in the local node database and external tracker. -- cgit v1.2.3