From: dooglus Date: Fri, 21 Sep 2007 22:00:23 +0000 (+0000) Subject: Addendum to 1799722: Now that 'save' no longer fails silently, we don't need the... X-Git-Url: https://git.pterodactylus.net/?a=commitdiff_plain;h=333f6210772127783246ee4853389e24f47ed7e7;p=synfig.git Addendum to 1799722: Now that 'save' no longer fails silently, we don't need the toolbox's 'save' button to special-case the 'save failed' message. git-svn-id: http://svn.voria.com/code@734 1f10aa63-cdf2-0310-b900-c93c546f37ac --- diff --git a/synfig-studio/trunk/src/gtkmm/toolbox.cpp b/synfig-studio/trunk/src/gtkmm/toolbox.cpp index 6764b88..110fb46 100644 --- a/synfig-studio/trunk/src/gtkmm/toolbox.cpp +++ b/synfig-studio/trunk/src/gtkmm/toolbox.cpp @@ -131,8 +131,7 @@ save_selected_instance() return; } - if(studio::App::get_selected_instance()->save() == studio::Instance::STATUS_ERROR) - App::dialog_error_blocking("Save - Error","Unable to save file"); + studio::App::get_selected_instance()->save(); } void