summaryrefslogtreecommitdiff
path: root/src/wx/wx_util.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2025-02-06 00:53:22 +0100
committerCarl Hetherington <cth@carlh.net>2025-02-06 00:53:22 +0100
commit351c9a6a87df18a6048ee8da541cde2efb1ce6f0 (patch)
treec6cdf66a092e1347cd7033b60b7b2c1b334e6499 /src/wx/wx_util.cc
parent90bcaa36fa76e7d22ae2cbe6f299bc2784076fde (diff)
wip: use sqlite3 for playlists2895-http-playlists
Diffstat (limited to 'src/wx/wx_util.cc')
-rw-r--r--src/wx/wx_util.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/wx/wx_util.cc b/src/wx/wx_util.cc
index bc2d593f1..cb231eb5f 100644
--- a/src/wx/wx_util.cc
+++ b/src/wx/wx_util.cc
@@ -33,7 +33,7 @@
#include "wx_util.h"
#include "wx_variant.h"
#include "lib/config.h"
-#include "lib/content_store.h"
+#include "lib/show_playlist_content_store.h"
#include "lib/cross.h"
#include "lib/job.h"
#include "lib/job_manager.h"
@@ -845,7 +845,7 @@ layout_for_short_screen(wxWindow* reference)
void
-update_content_store()
+update_show_playlist_content_store()
{
auto dir = Config::instance()->player_content_directory();
if (!dir || !dcp::filesystem::is_directory(*dir)) {
@@ -854,7 +854,7 @@ update_content_store()
wxProgressDialog progress(variant::wx::dcpomatic(), _("Reading content directory"));
- auto store = ContentStore::instance();
+ auto store = ShowPlaylistContentStore::instance();
auto errors = store->update([&progress]() {
return progress.Pulse();