diff options
| author | Carl Hetherington <cth@carlh.net> | 2020-09-04 18:15:23 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2020-09-11 17:35:10 +0200 |
| commit | 2e6f03cbb2c5664bd338ad28bfd6c54732e64b47 (patch) | |
| tree | 40645e2c1a9fdd4c397310ac4328e99adb11c4b7 /src/tools | |
| parent | c9dfea2fc2cb4adccdafc325964113c4ccd0e007 (diff) | |
Fixes for building with newer wxWidgets.
Diffstat (limited to 'src/tools')
| -rw-r--r-- | src/tools/dcpomatic_player.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tools/dcpomatic_player.cc b/src/tools/dcpomatic_player.cc index 11f4bfaa7..c7a724375 100644 --- a/src/tools/dcpomatic_player.cc +++ b/src/tools/dcpomatic_player.cc @@ -834,10 +834,10 @@ private: switch (Config::instance()->image_display()) { case 0: _dual_screen->Move (0, 0); - Move (wxDisplay(0).GetClientArea().GetWidth(), 0); + Move (wxDisplay(0U).GetClientArea().GetWidth(), 0); break; case 1: - _dual_screen->Move (wxDisplay(0).GetClientArea().GetWidth(), 0); + _dual_screen->Move (wxDisplay(0U).GetClientArea().GetWidth(), 0); // (0, 0) doesn't seem to work for some strange reason Move (8, 8); break; |
