diff options
Diffstat (limited to 'src/entry.cpp')
-rw-r--r-- | src/entry.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/entry.cpp b/src/entry.cpp index 801a9a4..514ee2d 100644 --- a/src/entry.cpp +++ b/src/entry.cpp @@ -73,7 +73,7 @@ bool Entry::operator==(const Entry& e1) { return true; } -Entry::Entry(CollPtr coll_) : KShared(), m_coll(coll_), m_id(-1) { +Entry::Entry(CollPtr coll_) : TDEShared(), m_coll(coll_), m_id(-1) { #ifndef NDEBUG if(!coll_) { kdWarning() << "Entry() - null collection pointer!" << endl; @@ -81,7 +81,7 @@ Entry::Entry(CollPtr coll_) : KShared(), m_coll(coll_), m_id(-1) { #endif } -Entry::Entry(CollPtr coll_, int id_) : KShared(), m_coll(coll_), m_id(id_) { +Entry::Entry(CollPtr coll_, int id_) : TDEShared(), m_coll(coll_), m_id(id_) { #ifndef NDEBUG if(!coll_) { kdWarning() << "Entry() - null collection pointer!" << endl; @@ -90,7 +90,7 @@ Entry::Entry(CollPtr coll_, int id_) : KShared(), m_coll(coll_), m_id(id_) { } Entry::Entry(const Entry& entry_) : - KShared(entry_), + TDEShared(entry_), m_coll(entry_.m_coll), m_id(-1), m_fields(entry_.m_fields), @@ -101,7 +101,7 @@ Entry& Entry::operator=(const Entry& other_) { if(this == &other_) return *this; // myDebug() << "Entry::operator=()" << endl; - static_cast<KShared&>(*this) = static_cast<const KShared&>(other_); + static_cast<TDEShared&>(*this) = static_cast<const TDEShared&>(other_); m_coll = other_.m_coll; m_id = other_.m_id; m_fields = other_.m_fields; |