From 8d6fecdf83984625b9bc6d010a6a00ee670af344 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Thu, 31 Jan 2013 00:39:49 -0600 Subject: Rename KShared --- languages/cpp/typedesc.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'languages/cpp/typedesc.h') diff --git a/languages/cpp/typedesc.h b/languages/cpp/typedesc.h index 0229c781..f2746a03 100644 --- a/languages/cpp/typedesc.h +++ b/languages/cpp/typedesc.h @@ -27,8 +27,8 @@ class SimpleTypeImpl; class TypeTrace; -typedef KSharedPtr TypeDescPointer; -typedef KSharedPtr TypePointer; +typedef TDESharedPtr TypeDescPointer; +typedef TDESharedPtr TypePointer; enum ResolutionFlags { NoFlag = 0, @@ -144,7 +144,7 @@ enum TypeDescFlags { }; -struct TypeDescData : public KShared { +struct TypeDescData : public TDEShared { typedef TQValueList TemplateParams; TQString m_cleanName; int m_pointerDepth; @@ -323,7 +323,7 @@ class TypeDesc { TypeDescPointer next(); - KSharedPtr next() const; + TDESharedPtr next() const; bool hasTemplateParams() const ; @@ -372,20 +372,20 @@ class TypeDesc { private: void takeData( const TQString& string ); void makeDataPrivate(); - KSharedPtr m_data; + TDESharedPtr m_data; void maybeInit(); void init( TQString stri ); }; -class TypeDescShared : public TypeDesc, public KShared { +class TypeDescShared : public TypeDesc, public TDEShared { public: - TypeDescShared( const TypeDescShared& rhs ) : TypeDesc( rhs ), KShared() {} + TypeDescShared( const TypeDescShared& rhs ) : TypeDesc( rhs ), TDEShared() {} - TypeDescShared( const TypeDesc& rhs ) : TypeDesc( rhs ), KShared() {} + TypeDescShared( const TypeDesc& rhs ) : TypeDesc( rhs ), TDEShared() {} TypeDescShared& operator = ( const TypeDesc& rhs ) { ( *( TypeDesc* ) this ) = rhs; -- cgit v1.2.1