summaryrefslogtreecommitdiff
path: root/src/wx
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2026-02-08 21:10:49 +0100
committerCarl Hetherington <cth@carlh.net>2026-02-08 21:10:49 +0100
commit9401afc97abeaf4b63c867393e5047e385002f8a (patch)
treecbc3ed276e765a781144f65a0abf817e7f6c1528 /src/wx
parentae5d6b702af178452f84b85dfa13b62be577e3f5 (diff)
Fix a few unwrapped boost::filesystem calls that had crept in.
Diffstat (limited to 'src/wx')
-rw-r--r--src/wx/wx_util.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wx/wx_util.cc b/src/wx/wx_util.cc
index 7d0329070..6abbaa7bb 100644
--- a/src/wx/wx_util.cc
+++ b/src/wx/wx_util.cc
@@ -636,7 +636,7 @@ bitmap_path (string name)
base = resources_path();
}
- if (!boost::filesystem::exists(base / name)) {
+ if (!dcp::filesystem::exists(base / name)) {
base = path / boost::filesystem::path("osx/preferences");
}
#else