summaryrefslogtreecommitdiffstats
path: root/src/library/library.cpp
diff options
context:
space:
mode:
authorUwe Klotz <uklotz@mixxx.org>2019-11-24 12:14:55 +0100
committerUwe Klotz <uklotz@mixxx.org>2019-11-24 12:40:04 +0100
commitc930736caf594834da200c78f60fce4508e012bc (patch)
tree5482533dc6ad2568e78e8690bf9b830502abfe98 /src/library/library.cpp
parent2d9e84756407f643cce51295cb22516bc7bfaf89 (diff)
Don't pass QPointer around
Diffstat (limited to 'src/library/library.cpp')
-rw-r--r--src/library/library.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/library/library.cpp b/src/library/library.cpp
index ccb416391e..d15c409787 100644
--- a/src/library/library.cpp
+++ b/src/library/library.cpp
@@ -211,6 +211,11 @@ Library::~Library() {
// Empty but required due to forward declarations in header file!
}
+TrackCollectionManager* Library::trackCollections() const {
+ // Cannot be implimented inline due to forward declarations
+ return m_pTrackCollectionManager;
+}
+
void Library::stopPendingTasks() {
if (m_pAnalysisFeature) {
m_pAnalysisFeature->stopAnalysis();