summaryrefslogtreecommitdiff
path: root/src/wx/audio_plot.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2022-04-04 22:37:31 +0200
committerCarl Hetherington <cth@carlh.net>2022-04-04 22:37:31 +0200
commitcf2ed48d21ddbc32bda262064480e88e69dc031a (patch)
tree039a981cebf24e1e7ca34478d35cd3c70b280bab /src/wx/audio_plot.cc
parent4b74bd9f359b9fe4f841cd9a361f3b2b24c2351e (diff)
Cleanup: move some methods from util to maths_util.
Diffstat (limited to 'src/wx/audio_plot.cc')
-rw-r--r--src/wx/audio_plot.cc13
1 files changed, 7 insertions, 6 deletions
diff --git a/src/wx/audio_plot.cc b/src/wx/audio_plot.cc
index 90a4aa91d..e08e07e05 100644
--- a/src/wx/audio_plot.cc
+++ b/src/wx/audio_plot.cc
@@ -20,27 +20,28 @@
#include "audio_plot.h"
-#include "wx_util.h"
#include "film_viewer.h"
+#include "wx_util.h"
#include "lib/audio_decoder.h"
#include "lib/audio_analysis.h"
#include "lib/compose.hpp"
+#include "lib/maths_util.h"
#include <wx/graphics.h>
#include <boost/bind/bind.hpp>
-#include <iostream>
#include <cfloat>
+#include <iostream>
using std::cout;
-using std::vector;
using std::list;
+using std::map;
using std::max;
using std::min;
-using std::map;
-using boost::bind;
-using boost::optional;
using std::shared_ptr;
+using std::vector;
using std::weak_ptr;
+using boost::bind;
+using boost::optional;
#if BOOST_VERSION >= 106100
using namespace boost::placeholders;
#endif