From 7663e55d418b5ea8765421c9570dba40f6bd97fd Mon Sep 17 00:00:00 2001 From: MenTaLguY Date: Wed, 15 Mar 2006 03:22:23 +0000 Subject: shared_ptr -> ptr_shared (bzr r240) --- src/debug/event.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/debug/event.h') diff --git a/src/debug/event.h b/src/debug/event.h index 8232f890d..fdc50f225 100644 --- a/src/debug/event.h +++ b/src/debug/event.h @@ -37,23 +37,23 @@ public: struct PropertyPair { public: PropertyPair() {} - PropertyPair(Util::shared_ptr n, Util::shared_ptr v) + PropertyPair(Util::ptr_shared n, Util::ptr_shared v) : name(n), value(v) {} - PropertyPair(char const *n, Util::shared_ptr v) + PropertyPair(char const *n, Util::ptr_shared v) : name(Util::share_string(n)), value(v) {} - PropertyPair(Util::shared_ptr n, char const *v) + PropertyPair(Util::ptr_shared n, char const *v) : name(n), value(Util::share_string(v)) {} PropertyPair(char const *n, char const *v) : name(Util::share_string(n)), value(Util::share_string(v)) {} - Util::shared_ptr name; - Util::shared_ptr value; + Util::ptr_shared name; + Util::ptr_shared value; }; static Category category() { return OTHER; } - virtual Util::shared_ptr name() const=0; + virtual Util::ptr_shared name() const=0; virtual unsigned propertyCount() const=0; virtual PropertyPair property(unsigned property) const=0; }; -- cgit v1.2.3