diff options
| author | Carl Hetherington <cth@carlh.net> | 2019-04-03 00:36:59 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2019-04-03 00:36:59 +0000 |
| commit | 53a0a3879cf00cfd91f8dc7860a143e4764d9952 (patch) | |
| tree | 90ecef0cba26fa8b8a2893868eacc7db203c098e /src | |
| parent | 698e3ac8863d264237003b49750ae074d612f451 (diff) | |
BOOST_FOREACH addition.
Diffstat (limited to 'src')
| -rw-r--r-- | src/tools/dcpomatic.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tools/dcpomatic.cc b/src/tools/dcpomatic.cc index 1b46e2292..1db6b2d0f 100644 --- a/src/tools/dcpomatic.cc +++ b/src/tools/dcpomatic.cc @@ -427,8 +427,8 @@ public: ); } - for (list<string>::const_iterator i = notes.begin(); i != notes.end(); ++i) { - error_dialog (0, std_to_wx (*i)); + BOOST_FOREACH (string i, notes) { + error_dialog (0, std_to_wx(i)); } set_film (film); |
