diff options
| author | MenTaLguY <mental@rydia.net> | 2006-02-08 04:15:29 +0000 |
|---|---|---|
| committer | mental <mental@users.sourceforge.net> | 2006-02-08 04:15:29 +0000 |
| commit | c7ffba4c8d0030bf5bf92dd4eef6fac6017c62bf (patch) | |
| tree | 48842d0beebf72330fd5fd3e8b6d3edcfbedf257 /src/jabber_whiteboard/deserializer.cpp | |
| parent | revert to black and white cursors (diff) | |
| download | inkscape-c7ffba4c8d0030bf5bf92dd4eef6fac6017c62bf.tar.gz inkscape-c7ffba4c8d0030bf5bf92dd4eef6fac6017c62bf.zip | |
share_static -> share_static_string
(bzr r104)
Diffstat (limited to 'src/jabber_whiteboard/deserializer.cpp')
| -rw-r--r-- | src/jabber_whiteboard/deserializer.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
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. |
