diff options
| author | Carl Hetherington <cth@carlh.net> | 2026-02-08 21:10:49 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2026-02-08 21:10:49 +0100 |
| commit | 9401afc97abeaf4b63c867393e5047e385002f8a (patch) | |
| tree | cbc3ed276e765a781144f65a0abf817e7f6c1528 /src/wx | |
| parent | ae5d6b702af178452f84b85dfa13b62be577e3f5 (diff) | |
Fix a few unwrapped boost::filesystem calls that had crept in.
Diffstat (limited to 'src/wx')
| -rw-r--r-- | src/wx/wx_util.cc | 2 |
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 |
