diff options
| author | Carl Hetherington <cth@carlh.net> | 2022-04-04 22:37:31 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2022-04-04 22:37:31 +0200 |
| commit | cf2ed48d21ddbc32bda262064480e88e69dc031a (patch) | |
| tree | 039a981cebf24e1e7ca34478d35cd3c70b280bab /src/wx/audio_mapping_view.cc | |
| parent | 4b74bd9f359b9fe4f841cd9a361f3b2b24c2351e (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; |
