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_gain_dialog.cc | |
| parent | 4b74bd9f359b9fe4f841cd9a361f3b2b24c2351e (diff) | |
Cleanup: move some methods from util to maths_util.
Diffstat (limited to 'src/wx/audio_gain_dialog.cc')
| -rw-r--r-- | src/wx/audio_gain_dialog.cc | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/wx/audio_gain_dialog.cc b/src/wx/audio_gain_dialog.cc index fb9bd2544..2c0f17c0a 100644 --- a/src/wx/audio_gain_dialog.cc +++ b/src/wx/audio_gain_dialog.cc @@ -18,11 +18,13 @@ */ + #include "audio_gain_dialog.h" #include "wx_util.h" -#include "lib/util.h" -#include <cmath> +#include "lib/maths_util.h" #include <wx/spinctrl.h> +#include <cmath> + AudioGainDialog::AudioGainDialog (wxWindow* parent, int c, int d, float v) : TableDialog (parent, _("Channel gain"), 3, 1, true) |
