From 57443681e97fff553d94260756ebedaee606610f Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Thu, 31 Jan 2013 00:19:26 -0600 Subject: Rename KShared --- src/ptrvector.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/ptrvector.h') diff --git a/src/ptrvector.h b/src/ptrvector.h index 727c29e..0e63743 100644 --- a/src/ptrvector.h +++ b/src/ptrvector.h @@ -37,7 +37,7 @@ public: VectorIterator(const VectorIterator& other) : m_vector(other.m_vector), m_index(other.m_index) {} // operator T*() { return m_vector->at(m_index).data(); } - operator KSharedPtr() { return m_vector->at(m_index); } + operator TDESharedPtr() { return m_vector->at(m_index); } T* operator->() { return m_vector->at(m_index).data(); } T& operator*() { return *m_vector->at(m_index); } T* data() { return m_vector->at(m_index).data(); } @@ -66,7 +66,7 @@ public: VectorConstIterator(const VectorIterator& other) : m_vector(other.m_vector), m_index(other.m_index) {} // operator const T*() { return m_vector->at(m_index).data(); } - operator KSharedPtr() { return m_vector->at(m_index); } + operator TDESharedPtr() { return m_vector->at(m_index); } const T* operator->() const { return m_vector->at(m_index).data(); } const T& operator*() const { return *m_vector->at(m_index); } const T* data() const { return m_vector->at(m_index).data(); } @@ -90,7 +90,7 @@ private: template class Vector { public: - typedef KSharedPtr Ptr; + typedef TDESharedPtr Ptr; typedef VectorIterator Iterator; typedef VectorConstIterator ConstIterator; -- cgit v1.2.1