diff options
| author | Carl Hetherington <cth@carlh.net> | 2024-12-30 15:43:14 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2025-01-05 12:58:13 +0100 |
| commit | b03f2277a205ff7e7cdaa12c6e52322ea474a7af (patch) | |
| tree | d6067668105b2f0c6d0651bd1b8bd4186e0b8893 /src/wx/config_dialog.cc | |
| parent | e46ff5f1cf168fb73ea930f3e8469165e5f6644e (diff) | |
Bump libdcp for raw_convert changes.
raw_convert<string> is gone, so here we use fmt::{to_string,format} instead.
Other raw_converts now use fast_float.
Diffstat (limited to 'src/wx/config_dialog.cc')
| -rw-r--r-- | src/wx/config_dialog.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wx/config_dialog.cc b/src/wx/config_dialog.cc index 19d23c6cc..17ee0fb21 100644 --- a/src/wx/config_dialog.cc +++ b/src/wx/config_dialog.cc @@ -31,7 +31,7 @@ #include "lib/util.h" #include <dcp/file.h> #include <dcp/filesystem.h> -#include <dcp/raw_convert.h> +#include <fmt/format.h> using std::function; @@ -982,7 +982,7 @@ SoundPage::config_changed () vector<NamedChannel> output; for (int i = 0; i < channels; ++i) { - output.push_back (NamedChannel(dcp::raw_convert<string>(i), i)); + output.push_back(NamedChannel(fmt::to_string(i), i)); } _map->set_output_channels (output); |
