summaryrefslogtreecommitdiffstats
path: root/src/entry.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-31 00:19:26 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-31 00:19:26 -0600
commit57443681e97fff553d94260756ebedaee606610f (patch)
tree9aee5acb23ff14cb454750a03eb3ad1f5bc66c57 /src/entry.cpp
parent71a8a17d6f6d5d95682d1b638d21937bc5a0d54b (diff)
downloadtellico-57443681e97fff553d94260756ebedaee606610f.tar.gz
tellico-57443681e97fff553d94260756ebedaee606610f.zip
Rename KShared
Diffstat (limited to 'src/entry.cpp')
-rw-r--r--src/entry.cpp8
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;