No-op: remove all trailing whitespace.
[dcpomatic.git] / src / wx / filter_dialog.cc
index 2abe53026532aff7a42c54862132067898cdfccc..306ee749dcc568c325e14d0a2a0758caed62f795 100644 (file)
 
 #include "lib/film.h"
 #include "filter_dialog.h"
-#include "filter_view.h"
+#include "filter_editor.h"
 
 using namespace std;
 using boost::bind;
 
 FilterDialog::FilterDialog (wxWindow* parent, vector<Filter const *> const & f)
        : wxDialog (parent, wxID_ANY, wxString (_("Filters")))
-       , _filters (new FilterView (this, f))
+       , _filters (new FilterEditor (this, f))
 {
        wxBoxSizer* sizer = new wxBoxSizer (wxVERTICAL);
        sizer->Add (_filters, 1, wxEXPAND | wxALL, 6);
@@ -46,7 +46,7 @@ FilterDialog::FilterDialog (wxWindow* parent, vector<Filter const *> const & f)
        sizer->Layout ();
        sizer->SetSizeHints (this);
 }
-       
+
 
 void
 FilterDialog::active_changed ()