summaryrefslogtreecommitdiffstats
path: root/languages/cpp/typedesc.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <[email protected]>2013-01-31 00:39:49 -0600
committerTimothy Pearson <[email protected]>2013-01-31 00:39:49 -0600
commit8d6fecdf83984625b9bc6d010a6a00ee670af344 (patch)
tree3bf8e73ad6d6f029998d9e8eafdf85ee17b89971 /languages/cpp/typedesc.cpp
parent758e85b36d3fafe1b40112032dab28dd3d2fc0e5 (diff)
downloadtdevelop-8d6fecdf83984625b9bc6d010a6a00ee670af344.tar.gz
tdevelop-8d6fecdf83984625b9bc6d010a6a00ee670af344.zip
Rename KShared
Diffstat (limited to 'languages/cpp/typedesc.cpp')
-rw-r--r--languages/cpp/typedesc.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/languages/cpp/typedesc.cpp b/languages/cpp/typedesc.cpp
index 5f2c292c..146beb08 100644
--- a/languages/cpp/typedesc.cpp
+++ b/languages/cpp/typedesc.cpp
@@ -209,7 +209,7 @@ void TypeDesc::setIncludeFiles( const HashedStringSet& files ) {
(*it)->setIncludeFiles( files );
}
if( m_data->m_nextType ) {
- if( m_data->m_nextType->_KShared_count() != 1 )
+ if( m_data->m_nextType->_TDEShared_count() != 1 )
m_data->m_nextType = new TypeDescShared( *(m_data->m_nextType) );
m_data->m_nextType->setIncludeFiles( files );
}
@@ -222,7 +222,7 @@ void TypeDesc::addIncludeFiles( const HashedStringSet& files ) {
(*it)->addIncludeFiles( files );
}
if( m_data->m_nextType ) {
- if( m_data->m_nextType->_KShared_count() != 1 )
+ if( m_data->m_nextType->_TDEShared_count() != 1 )
m_data->m_nextType = new TypeDescShared( *(m_data->m_nextType) );
m_data->m_nextType->addIncludeFiles( files );
}
@@ -485,7 +485,7 @@ TypeDescPointer TypeDesc::next() {
return m_data->m_nextType;
}
-KSharedPtr<const TypeDescShared> TypeDesc::next() const {
+TDESharedPtr<const TypeDescShared> TypeDesc::next() const {
if ( !m_data )
return 0;
return m_data->m_nextType.data();