diff options
Diffstat (limited to 'languages/cpp/typedesc.h')
-rw-r--r-- | languages/cpp/typedesc.h | 16 |
1 files changed, 8 insertions, 8 deletions
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<TypeDescShared> TypeDescPointer; -typedef KSharedPtr<SimpleTypeImpl> TypePointer; +typedef TDESharedPtr<TypeDescShared> TypeDescPointer; +typedef TDESharedPtr<SimpleTypeImpl> TypePointer; enum ResolutionFlags { NoFlag = 0, @@ -144,7 +144,7 @@ enum TypeDescFlags { }; -struct TypeDescData : public KShared { +struct TypeDescData : public TDEShared { typedef TQValueList<LocateResult> TemplateParams; TQString m_cleanName; int m_pointerDepth; @@ -323,7 +323,7 @@ class TypeDesc { TypeDescPointer next(); - KSharedPtr<const TypeDescShared> next() const; + TDESharedPtr<const TypeDescShared> next() const; bool hasTemplateParams() const ; @@ -372,20 +372,20 @@ class TypeDesc { private: void takeData( const TQString& string ); void makeDataPrivate(); - KSharedPtr<TypeDescData> m_data; + TDESharedPtr<TypeDescData> 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; |