From a5ac1f2e809aaf98e59e50f70c7a885739ef81c1 Mon Sep 17 00:00:00 2001 From: Felix Geyer Date: Wed, 18 Apr 2012 13:57:57 +0200 Subject: [PATCH] Call m_group->database() instead of keeping a reference to Database in Entries. Previously we didn't update m_db when the database of the group changed. --- src/core/Entry.cpp | 20 ++++++++++++++------ src/core/Entry.h | 3 ++- 2 files changed, 16 insertions(+), 7 deletions(-) diff --git a/src/core/Entry.cpp b/src/core/Entry.cpp index d0770f9d7..2fc482682 100644 --- a/src/core/Entry.cpp +++ b/src/core/Entry.cpp @@ -25,7 +25,6 @@ Entry::Entry() { m_group = 0; - m_db = 0; m_updateTimeinfo = true; m_iconNumber = 0; @@ -79,8 +78,8 @@ QImage Entry::icon() const return databaseIcons()->icon(m_iconNumber); } else { - // TODO check if m_db is 0 - return m_db->metadata()->customIcon(m_customIcon); + // TODO check if database() is 0 + return database()->metadata()->customIcon(m_customIcon); } } @@ -92,8 +91,8 @@ QPixmap Entry::iconPixmap() const else { QPixmap pixmap; if (!QPixmapCache::find(m_pixmapCacheKey, &pixmap)) { - // TODO check if m_db is 0 - pixmap = QPixmap::fromImage(m_db->metadata()->customIcon(m_customIcon)); + // TODO check if database() is 0 + pixmap = QPixmap::fromImage(database()->metadata()->customIcon(m_customIcon)); *const_cast(&m_pixmapCacheKey) = QPixmapCache::insert(pixmap); } @@ -336,7 +335,6 @@ void Entry::setGroup(Group* group) } group->addEntry(this); m_group = group; - m_db = group->database(); QObject::setParent(group); } @@ -344,3 +342,13 @@ void Entry::emitDataChanged() { Q_EMIT dataChanged(this); } + +const Database* Entry::database() const +{ + if (m_group) { + return m_group->database(); + } + else { + return 0; + } +} diff --git a/src/core/Entry.h b/src/core/Entry.h index 80e761ac1..36df4c080 100644 --- a/src/core/Entry.h +++ b/src/core/Entry.h @@ -111,6 +111,8 @@ private Q_SLOTS: void emitDataChanged(); private: + const Database* database() const; + Uuid m_uuid; int m_iconNumber; Uuid m_customIcon; @@ -128,7 +130,6 @@ private: QList m_history; QPointer m_group; - const Database* m_db; QPixmapCache::Key m_pixmapCacheKey; bool m_updateTimeinfo;