diff options
Diffstat (limited to 'sigmodr/tree/SoundModel.cpp')
-rw-r--r-- | sigmodr/tree/SoundModel.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sigmodr/tree/SoundModel.cpp b/sigmodr/tree/SoundModel.cpp index 11596c46..15eecf04 100644 --- a/sigmodr/tree/SoundModel.cpp +++ b/sigmodr/tree/SoundModel.cpp @@ -31,16 +31,16 @@ // KDE includes #include <KMenu> -Sigmodr::SoundModel::SoundModel(BaseModel* parent, Sigmod::Sound* sound) : +Sigmodr::Tree::SoundModel::SoundModel(BaseModel* parent, Sigmod::Sound* sound) : ObjectModel(parent, sound) { } -Sigmodr::SoundModel::~SoundModel() +Sigmodr::Tree::SoundModel::~SoundModel() { } -QVariant Sigmodr::SoundModel::data(int role) const +QVariant Sigmodr::Tree::SoundModel::data(int role) const { if (role == Qt::DisplayRole) return qobject_cast<Sigmod::Sound*>(m_object)->name(); @@ -64,7 +64,7 @@ QVariant Sigmodr::SoundModel::data(int role) const return ObjectModel::data(role); } -void Sigmodr::SoundModel::deleteSelf() +void Sigmodr::Tree::SoundModel::deleteSelf() { qobject_cast<GroupModel*>(m_parent)->deleteObject(this); } |