From: dooglus Date: Sun, 26 Oct 2008 20:44:10 +0000 (+0000) Subject: Change error message "unable to open file" to "unable to load", since the error may... X-Git-Url: https://git.pterodactylus.net/?a=commitdiff_plain;ds=inline;h=438a3e2a6c0610d4610fc695134156d62c5a57e5;hp=c908449698409cf3807942ee12c9f4f2da3daaa8;p=synfig.git Change error message "unable to open file" to "unable to load", since the error may not be that we can't open it; perhaps we could open it, but didn't like the contents. git-svn-id: https://synfig.svn.sourceforge.net/svnroot/synfig@2139 1f10aa63-cdf2-0310-b900-c93c546f37ac --- diff --git a/synfig-studio/trunk/src/gtkmm/app.cpp b/synfig-studio/trunk/src/gtkmm/app.cpp index a1cb858..62780a6 100644 --- a/synfig-studio/trunk/src/gtkmm/app.cpp +++ b/synfig-studio/trunk/src/gtkmm/app.cpp @@ -2351,7 +2351,7 @@ App::open_as(std::string filename,std::string as) else { if(!canvas) - throw (String)strprintf(_("Unable to open file \"%s\":\n\n"),filename.c_str()) + errors; + throw (String)strprintf(_("Unable to load \"%s\":\n\n"),filename.c_str()) + errors; if (as.find(custom_filename_prefix.c_str()) != 0) add_recent_file(as);