From: dooglus Date: Fri, 1 Feb 2008 22:54:42 +0000 (+0000) Subject: Show a very simple message in the console on start-up so as not to scare people when... X-Git-Url: https://git.pterodactylus.net/?a=commitdiff_plain;h=8fa904f0660f96c2d3920c3da92a56d2af06ca0e;p=synfig.git Show a very simple message in the console on start-up so as not to scare people when they see an empty terminal window 'doing nothing'. git-svn-id: http://svn.voria.com/code@1554 1f10aa63-cdf2-0310-b900-c93c546f37ac --- diff --git a/synfig-studio/trunk/src/gtkmm/main.cpp b/synfig-studio/trunk/src/gtkmm/main.cpp index 15dc9d6..dba3d0e 100644 --- a/synfig-studio/trunk/src/gtkmm/main.cpp +++ b/synfig-studio/trunk/src/gtkmm/main.cpp @@ -69,6 +69,10 @@ int main(int argc, char **argv) SmartFILE file(IPC::make_connection()); if(file) { + cout << endl; + cout << " " << _("synfig studio is already running") << endl << endl; + cout << " " << _("the existing process will be used") << endl << endl;; + fprintf(file.get(),"F\n"); // Hey, another copy of us is open! @@ -89,6 +93,9 @@ int main(int argc, char **argv) } } + cout << endl; + cout << " " << _("synfig studio -- starting up application...") << endl << endl; + try { studio::App app(&argc, &argv);