aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/General/copypaste
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/General/copypaste')
-rw-r--r--src/plugins/General/copypaste/copypaste.cpp12
-rw-r--r--src/plugins/General/copypaste/copypaste.h4
2 files changed, 8 insertions, 8 deletions
diff --git a/src/plugins/General/copypaste/copypaste.cpp b/src/plugins/General/copypaste/copypaste.cpp
index 87fc8a275..2d9576187 100644
--- a/src/plugins/General/copypaste/copypaste.cpp
+++ b/src/plugins/General/copypaste/copypaste.cpp
@@ -66,9 +66,9 @@ void CopyPaste::cut()
qDebug("%s", Q_FUNC_INFO);
qDeleteAll(m_buffer);
m_buffer.clear();
- foreach(PlayListItem *item, m_pl_manager->selectedPlayList()->selectedItems())
+ foreach(PlayListTrack *item, m_pl_manager->selectedPlayList()->selectedItems())
{
- m_buffer.append(new PlayListItem(*item));
+ m_buffer.append(new PlayListTrack(*item));
}
m_pl_manager->selectedPlayList()->removeSelected();
}
@@ -78,17 +78,17 @@ void CopyPaste::copy()
qDebug("%s", Q_FUNC_INFO);
qDeleteAll(m_buffer);
m_buffer.clear();
- foreach(PlayListItem *item, m_pl_manager->selectedPlayList()->selectedItems())
+ foreach(PlayListTrack *item, m_pl_manager->selectedPlayList()->selectedItems())
{
- m_buffer.append(new PlayListItem(*item));
+ m_buffer.append(new PlayListTrack(*item));
}
}
void CopyPaste::paste()
{
qDebug("%s", Q_FUNC_INFO);
- foreach(PlayListItem *item, m_buffer)
+ foreach(PlayListTrack *item, m_buffer)
{
- m_pl_manager->selectedPlayList()->add(new PlayListItem(*item));
+ m_pl_manager->selectedPlayList()->add(new PlayListTrack(*item));
}
}
diff --git a/src/plugins/General/copypaste/copypaste.h b/src/plugins/General/copypaste/copypaste.h
index 9a444f26c..3b550122c 100644
--- a/src/plugins/General/copypaste/copypaste.h
+++ b/src/plugins/General/copypaste/copypaste.h
@@ -26,7 +26,7 @@
class QAction;
class SoundCore;
-class PlayListItem;
+class PlayListTrack;
class PlayListManager;
/**
@@ -47,7 +47,7 @@ private slots:
private:
PlayListManager *m_pl_manager;
- QList<PlayListItem *> m_buffer;
+ QList<PlayListTrack *> m_buffer;
};
#endif //COPYPASTE_H