summaryrefslogtreecommitdiff
path: root/src/wx/content_colour_conversion_dialog.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/wx/content_colour_conversion_dialog.cc')
-rw-r--r--src/wx/content_colour_conversion_dialog.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/wx/content_colour_conversion_dialog.cc b/src/wx/content_colour_conversion_dialog.cc
index 351d5aa65..da9e1a41b 100644
--- a/src/wx/content_colour_conversion_dialog.cc
+++ b/src/wx/content_colour_conversion_dialog.cc
@@ -26,7 +26,6 @@
#include "lib/config.h"
#include "lib/util.h"
#include <wx/statline.h>
-#include <boost/foreach.hpp>
#include <iostream>
using std::string;
@@ -65,7 +64,7 @@ ContentColourConversionDialog::ContentColourConversionDialog (wxWindow* parent,
_editor_connection = _editor->Changed.connect (boost::bind (&ContentColourConversionDialog::check_for_preset, this));
- BOOST_FOREACH (PresetColourConversion const &i, PresetColourConversion::all ()) {
+ for (auto const& i: PresetColourConversion::all ()) {
_preset_choice->Append (std_to_wx (i.name));
}
}