summaryrefslogtreecommitdiffstats
path: root/languages/cpp/typedesc.h
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-31 00:39:49 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-31 00:39:49 -0600
commit8d6fecdf83984625b9bc6d010a6a00ee670af344 (patch)
tree3bf8e73ad6d6f029998d9e8eafdf85ee17b89971 /languages/cpp/typedesc.h
parent758e85b36d3fafe1b40112032dab28dd3d2fc0e5 (diff)
downloadtdevelop-8d6fecdf83984625b9bc6d010a6a00ee670af344.tar.gz
tdevelop-8d6fecdf83984625b9bc6d010a6a00ee670af344.zip
Rename KShared
Diffstat (limited to 'languages/cpp/typedesc.h')
-rw-r--r--languages/cpp/typedesc.h16
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;