summaryrefslogtreecommitdiff
path: root/src/wx
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2025-10-15 00:05:22 +0200
committerCarl Hetherington <cth@carlh.net>2026-02-03 21:37:04 +0100
commitd2eff772532b085a614d7f09c1095f13508b7d3b (patch)
treedcb4dffe9a4148b4806affc258128df9a0b22917 /src/wx
parent277037234b63be78aa5bf28fb90d6ba1c1ac6bee (diff)
Rename ContentStore -> ShowPlaylistContentStore.
Diffstat (limited to 'src/wx')
-rw-r--r--src/wx/content_view.cc2
-rw-r--r--src/wx/content_view.h2
-rw-r--r--src/wx/playlist_controls.cc2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/wx/content_view.cc b/src/wx/content_view.cc
index ce7e9693e..552df6fd7 100644
--- a/src/wx/content_view.cc
+++ b/src/wx/content_view.cc
@@ -88,7 +88,7 @@ ContentView::update ()
wxProgressDialog progress(variant::wx::dcpomatic(), _("Reading content directory"));
- auto store = ContentStore::instance();
+ auto store = ShowPlaylistContentStore::instance();
auto errors = store->update([&progress]() {
return progress.Pulse();
diff --git a/src/wx/content_view.h b/src/wx/content_view.h
index 305a385dc..300e698f3 100644
--- a/src/wx/content_view.h
+++ b/src/wx/content_view.h
@@ -19,7 +19,7 @@
*/
-#include "lib/content_store.h"
+#include "lib/show_playlist_content_store.h"
#include <dcp/warnings.h>
LIBDCP_DISABLE_WARNINGS
#include <wx/listctrl.h>
diff --git a/src/wx/playlist_controls.cc b/src/wx/playlist_controls.cc
index 231df5374..1b949349d 100644
--- a/src/wx/playlist_controls.cc
+++ b/src/wx/playlist_controls.cc
@@ -276,7 +276,7 @@ PlaylistControls::update_playlist_directory()
try {
if (is_regular_file(i->path()) && i->path().extension() == ".xml") {
SPL spl;
- spl.read(i->path(), ContentStore::instance());
+ spl.read(i->path(), ShowPlaylistContentStore::instance());
_playlists.push_back(spl);
}
} catch (exception& e) {