summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2010-01-13 02:07:43 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2010-01-13 02:07:43 +0000
commit52b3424649a3826fac372f1636ab08f280dc8fd3 (patch)
treeaafa85c9b48ae6ff2594444b9923f4267e67745a
parentd4f376779d621cb4024b2872f38e2cb5710cf8fa (diff)
fix error in construction of system template path
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@6483 d708f5d6-7413-0410-9779-e7cbd77b26cf
-rw-r--r--gtk2_ardour/new_session_dialog.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk2_ardour/new_session_dialog.cc b/gtk2_ardour/new_session_dialog.cc
index ad19892d4d..267ca4d750 100644
--- a/gtk2_ardour/new_session_dialog.cc
+++ b/gtk2_ardour/new_session_dialog.cc
@@ -399,7 +399,7 @@ NewSessionDialog::NewSessionDialog()
const char * const template_dir_name = X_("templates");
//if SYSTEM template folder exists, add it to the file chooser
- const std::string sys_templates_path = ARDOUR::get_system_data_path() + template_dir_name;
+ const std::string sys_templates_path = ARDOUR::get_system_data_path() + "/" + template_dir_name;
printf("system template path = %s\n", sys_templates_path.c_str());
if (Glib::file_test(sys_templates_path, Glib::FILE_TEST_IS_DIR))
{