diff options
| author | Carl Hetherington <cth@carlh.net> | 2022-01-24 22:26:59 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2022-01-25 19:44:56 +0100 |
| commit | 07befde2cbbad4d979631727fc35399164d0aa1c (patch) | |
| tree | fbc537ff6789d8aabe71e69b4055daf302527cd1 /src/wx/audio_mapping_view.cc | |
| parent | dadde92543ee5039d2dc869c698fcde7ffac5f4b (diff) | |
Cleanup: move some methods from util to maths_util.
Diffstat (limited to 'src/wx/audio_mapping_view.cc')
| -rw-r--r-- | src/wx/audio_mapping_view.cc | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/wx/audio_mapping_view.cc b/src/wx/audio_mapping_view.cc index 7c12a1646..81fa1a70d 100644 --- a/src/wx/audio_mapping_view.cc +++ b/src/wx/audio_mapping_view.cc @@ -24,11 +24,11 @@ */ +#include "audio_gain_dialog.h" #include "audio_mapping_view.h" #include "wx_util.h" -#include "audio_gain_dialog.h" #include "lib/audio_mapping.h" -#include "lib/util.h" +#include "lib/maths_util.h" #include "lib/warnings.h" #include <dcp/locale_convert.h> #include <dcp/types.h> @@ -43,13 +43,13 @@ DCPOMATIC_ENABLE_WARNINGS using std::cout; using std::list; -using std::string; -using std::min; +using std::make_pair; using std::max; -using std::vector; +using std::min; using std::pair; -using std::make_pair; using std::shared_ptr; +using std::string; +using std::vector; using boost::optional; #if BOOST_VERSION >= 106100 using namespace boost::placeholders; |
