Revision: 1351
http://svn.sourceforge.net/geany/?rev=1351&view=rev
Author: ntrel
Date: 2007-03-01 07:54:12 -0800 (Thu, 01 Mar 2007)
Log Message:
-----------
Edit confirm project close text.
Modified Paths:
--------------
trunk/src/project.c
Modified: trunk/src/project.c
===================================================================
--- trunk/src/project.c 2007-03-01 12:38:31 UTC (rev 1350)
+++ trunk/src/project.c 2007-03-01 15:54:12 UTC (rev 1351)
@@ -348,7 +348,8 @@
if (app->project != NULL)
{
gchar *msg =
- _("There is already an open project \"%s\". Do you want to close it before proceed?");
+ _("The '%s' project is already open."
+ "Do you want to close it before proceeding?");
if (dialogs_show_question(msg, app->project->name))
{
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 1350
http://svn.sourceforge.net/geany/?rev=1350&view=rev
Author: ntrel
Date: 2007-03-01 04:38:31 -0800 (Thu, 01 Mar 2007)
Log Message:
-----------
avoid using __VA_ARGS__ because older gcc 2.x versions probably don't support C99.
Modified Paths:
--------------
trunk/src/project.c
Modified: trunk/src/project.c
===================================================================
--- trunk/src/project.c 2007-03-01 11:42:11 UTC (rev 1349)
+++ trunk/src/project.c 2007-03-01 12:38:31 UTC (rev 1350)
@@ -69,7 +69,8 @@
static void on_entries_changed(GtkEditable *editable, PropertyDialogElements *e);
-#define SHOW_ERR(...) dialogs_show_msgbox(GTK_MESSAGE_ERROR, __VA_ARGS__)
+// avoid using __VA_ARGS__ because older gcc 2.x versions probably don't support C99
+#define SHOW_ERR(args...) dialogs_show_msgbox(GTK_MESSAGE_ERROR, args)
#define MAX_NAME_LEN 50
// "projects" is part of the default project base path so be carefully when translating
// please avoid special characters and spaces, look at the source for details or ask Frank
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.