summaryrefslogtreecommitdiff
path: root/src/wx/new_film_dialog.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/wx/new_film_dialog.cc')
-rw-r--r--src/wx/new_film_dialog.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wx/new_film_dialog.cc b/src/wx/new_film_dialog.cc
index 2612a6afe..be5af999e 100644
--- a/src/wx/new_film_dialog.cc
+++ b/src/wx/new_film_dialog.cc
@@ -74,11 +74,11 @@ NewFilmDialog::~NewFilmDialog ()
_directory = wx_to_std (_folder->GetPath ());
}
-string
+boost::filesystem::path
NewFilmDialog::get_path () const
{
filesystem::path p;
p /= wx_to_std (_folder->GetPath ());
p /= wx_to_std (_name->GetValue ());
- return p.string ();
+ return p;
}