From 8d0581a720dd73c7714289ae8db12455c6f5c8c7 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Sat, 8 May 2010 01:20:33 +0000 Subject: Remove use of i18n macros in headers. Prevents our gettext.h being included before libintl.h, which causes failures when ENABLE_NLS is not defined (bug #3111) git-svn-id: svn://localhost/ardour2/branches/3.0@7081 d708f5d6-7413-0410-9779-e7cbd77b26cf --- libs/ardour/export_failed.cc | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100755 libs/ardour/export_failed.cc (limited to 'libs/ardour/export_failed.cc') diff --git a/libs/ardour/export_failed.cc b/libs/ardour/export_failed.cc new file mode 100755 index 0000000000..97f2ee56ac --- /dev/null +++ b/libs/ardour/export_failed.cc @@ -0,0 +1,33 @@ +/* + Copyright (C) 2008 Paul Davis + Author: Sakari Bergen + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + +*/ + +#include "pbd/error.h" +#include "ardour/export_failed.h" + +#include "i18n.h" + +using namespace std; +using namespace ARDOUR; + +ExportFailed::ExportFailed (string const & reason) + : reason (reason.c_str()) +{ + PBD::error << string_compose (_("Export failed: %1"), reason) << endmsg; +} -- cgit v1.2.3