better version of that last commit

git-svn-id: svn://localhost/ardour2/branches/3.0@8415 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2011-01-03 15:43:06 +00:00
parent d4f2f9a57e
commit 749e90886d
1 changed files with 2 additions and 1 deletions

View File

@ -36,6 +36,7 @@
using namespace std;
using namespace ARDOUR;
using namespace PBD;
SessionImportDialog::SessionImportDialog (ARDOUR::Session* target) :
ArdourDialog (_("Import From Session")),
@ -105,7 +106,7 @@ SessionImportDialog::load_session (const string& filename)
{
if (_session) {
if (tree.read (filename)) {
error << string_compose (_("Cannot load XML for session from %1", filename)) << endmsg;
error << string_compose (_("Cannot load XML for session from %1"), filename) << endmsg;
return;
}
boost::shared_ptr<AudioRegionImportHandler> region_handler (new AudioRegionImportHandler (tree, *_session));