summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-09-24 21:12:51 +0100
committerCarl Hetherington <cth@carlh.net>2013-09-24 21:12:51 +0100
commit05687b49ec37e896ed7e493a587a78cd236f3aa1 (patch)
tree907521b57e99dc5241086e790c6b55553d481e47 /src
parent84608d00576243f147ad12367633456729ffd1cb (diff)
KDM path fixes.
Diffstat (limited to 'src')
-rw-r--r--src/lib/film.cc3
-rw-r--r--src/wx/kdm_dialog.cc3
2 files changed, 4 insertions, 2 deletions
diff --git a/src/lib/film.cc b/src/lib/film.cc
index 708876151..07af46d97 100644
--- a/src/lib/film.cc
+++ b/src/lib/film.cc
@@ -961,8 +961,7 @@ Film::make_kdms (
);
boost::filesystem::path out = directory;
- out /= tidy_for_filename ((*i)->cinema->name) + "_" + tidy_for_filename ((*i)->name);
- out /= "kdm.xml";
+ out /= tidy_for_filename ((*i)->cinema->name) + "_" + tidy_for_filename ((*i)->name) + ".kdm.xml";
kdm->write_to_file_formatted (out.string());
}
}
diff --git a/src/wx/kdm_dialog.cc b/src/wx/kdm_dialog.cc
index c8212636a..f2fc53711 100644
--- a/src/wx/kdm_dialog.cc
+++ b/src/wx/kdm_dialog.cc
@@ -20,6 +20,7 @@
#include <wx/treectrl.h>
#include <wx/datectrl.h>
#include <wx/timectrl.h>
+#include <wx/stdpaths.h>
#include "lib/cinema.h"
#include "lib/config.h"
#include "kdm_dialog.h"
@@ -98,6 +99,8 @@ KDMDialog::KDMDialog (wxWindow* parent)
_folder = new wxDirPickerCtrl (this, wxID_ANY);
#endif
+ _folder->SetPath (wxStandardPaths::Get().GetDocumentsDir());
+
table->Add (_folder, 1, wxEXPAND);
vertical->Add (table, 0, wxEXPAND | wxALL, 6);