diff options
| author | Carl Hetherington <cth@carlh.net> | 2020-10-18 20:01:44 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2020-10-18 20:01:44 +0200 |
| commit | ad31022bd9ecabd2c65ee2359f8d859d22fdf84e (patch) | |
| tree | bddb1ae12ea61716d5ede8a5fce2bd668836188f | |
| parent | 4c0d8ea16deb997ff828767452d3aba560195267 (diff) | |
Tidy up and fix bitmap path finding in the playlist editor.
| -rw-r--r-- | src/tools/dcpomatic_playlist.cc | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/src/tools/dcpomatic_playlist.cc b/src/tools/dcpomatic_playlist.cc index 6bf2e20b4..baeeb96be 100644 --- a/src/tools/dcpomatic_playlist.cc +++ b/src/tools/dcpomatic_playlist.cc @@ -273,15 +273,8 @@ public: wxImageList* images = new wxImageList (16, 16); wxIcon tick_icon; wxIcon no_tick_icon; -#ifdef DCPOMATIC_OSX - tick_icon.LoadFile ("tick.png", wxBITMAP_TYPE_PNG_RESOURCE); - no_tick_icon.LoadFile ("no_tick.png", wxBITMAP_TYPE_PNG_RESOURCE); -#else - boost::filesystem::path tick_path = resources_path() / "tick.png"; - tick_icon.LoadFile (std_to_wx(tick_path.string()), wxBITMAP_TYPE_PNG); - boost::filesystem::path no_tick_path = resources_path() / "no_tick.png"; - no_tick_icon.LoadFile (std_to_wx(no_tick_path.string()), wxBITMAP_TYPE_PNG); -#endif + tick_icon.LoadFile (bitmap_path("tick"), wxBITMAP_TYPE_PNG); + no_tick_icon.LoadFile (bitmap_path("no_tick"), wxBITMAP_TYPE_PNG); images->Add (tick_icon); images->Add (no_tick_icon); |
