Some boost::filesystem::path cleanups; tweak for changes to libdcp.
[dcpomatic.git] / src / wx / new_film_dialog.cc
index 6a8935232234add7736bc7dfc263d5da060465a2..2612a6afe9afabc987847dcbc0a1547ca6c43850 100644 (file)
@@ -29,7 +29,7 @@
 using namespace std;
 using namespace boost;
 
-boost::optional<string> NewFilmDialog::_directory;
+boost::optional<boost::filesystem::path> NewFilmDialog::_directory;
 
 NewFilmDialog::NewFilmDialog (wxWindow* parent)
        : wxDialog (parent, wxID_ANY, _("New Film"))
@@ -57,7 +57,7 @@ NewFilmDialog::NewFilmDialog (wxWindow* parent)
                _directory = Config::instance()->default_directory_or (wx_to_std (wxStandardPaths::Get().GetDocumentsDir()));
        }
        
-       _folder->SetPath (std_to_wx (_directory.get()));
+       _folder->SetPath (std_to_wx (_directory.get().string()));
        table->Add (_folder, 1, wxEXPAND);
 
        wxSizer* buttons = CreateSeparatedButtonSizer (wxOK | wxCANCEL);