SF.net SVN: geany:[3178] branches/build-system

ntrel at users.sourceforge.net ntrel at xxxxx
Wed Nov 5 17:57:52 UTC 2008


Revision: 3178
          http://geany.svn.sourceforge.net/geany/?rev=3178&view=rev
Author:   ntrel
Date:     2008-11-05 17:57:52 +0000 (Wed, 05 Nov 2008)

Log Message:
-----------
Capitalize 'project build menu commands' string, make fully
translatable.
Add column spacing of 6 for project commands table (Gnome HIG).

Modified Paths:
--------------
    branches/build-system/ChangeLog
    branches/build-system/src/build.c

Modified: branches/build-system/ChangeLog
===================================================================
--- branches/build-system/ChangeLog	2008-11-05 16:49:44 UTC (rev 3177)
+++ branches/build-system/ChangeLog	2008-11-05 17:57:52 UTC (rev 3178)
@@ -4,6 +4,10 @@
    Fix warning with -Wall -Wextra.
  * src/build.c:
    Factor with add_build_command_widgets().
+ * src/build.c:
+   Capitalize 'project build menu commands' string, make fully
+   translatable.
+   Add column spacing of 6 for project commands table (Gnome HIG).
 
 
 2008-111-01 Lex Trotman <elextr(at)gmail(dot)com>

Modified: branches/build-system/src/build.c
===================================================================
--- branches/build-system/src/build.c	2008-11-05 16:49:44 UTC (rev 3177)
+++ branches/build-system/src/build.c	2008-11-05 17:57:52 UTC (rev 3178)
@@ -1687,14 +1687,13 @@
     {
  		GtkWidget *align, *frame;
 		/* in-dialog heading for the project part of the build commands dialog */
-		gchar *frame_title = g_strdup_printf(_("%s build menu commands"), "project");
         struct GeanyProject *proj = app->project;
 
-		frame = ui_frame_new_with_alignment(frame_title, &align);
+		frame = ui_frame_new_with_alignment(_("Project build menu commands"), &align);
 		gtk_container_add(GTK_CONTAINER(vbox), frame);
-		g_free(frame_title);
 
 		pr_table = gtk_table_new(3, 3, FALSE);
+		gtk_table_set_col_spacings(GTK_TABLE(pr_table), 6);
 		gtk_table_set_row_spacings(GTK_TABLE(pr_table), 6);
 		gtk_container_add(GTK_CONTAINER(align), pr_table);
 


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.



More information about the Commits mailing list