SF.net SVN: geany:[3179] branches/build-system
ntrel at users.sourceforge.net
ntrel at xxxxx
Wed Nov 5 18:01:26 UTC 2008
Revision: 3179
http://geany.svn.sourceforge.net/geany/?rev=3179&view=rev
Author: ntrel
Date: 2008-11-05 18:01:26 +0000 (Wed, 05 Nov 2008)
Log Message:
-----------
Use GeanyProject typedef instead of struct.
Modified Paths:
--------------
branches/build-system/ChangeLog
branches/build-system/src/build.c
Modified: branches/build-system/ChangeLog
===================================================================
--- branches/build-system/ChangeLog 2008-11-05 17:57:52 UTC (rev 3178)
+++ branches/build-system/ChangeLog 2008-11-05 18:01:26 UTC (rev 3179)
@@ -8,6 +8,8 @@
Capitalize 'project build menu commands' string, make fully
translatable.
Add column spacing of 6 for project commands table (Gnome HIG).
+ * src/build.c:
+ Use GeanyProject typedef instead of struct.
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 17:57:52 UTC (rev 3178)
+++ branches/build-system/src/build.c 2008-11-05 18:01:26 UTC (rev 3179)
@@ -1040,7 +1040,7 @@
static void create_build_menu_gen(BuildMenuItems *menu_items)
{
GtkWidget *menu, *item = NULL, *image, *separator;
- struct GeanyProject *proj;
+ GeanyProject *proj;
gchar *tiptext;
GtkAccelGroup *accel_group = gtk_accel_group_new();
GtkTooltips *tooltips = GTK_TOOLTIPS(lookup_widget(main_widgets.window, "tooltips"));
@@ -1548,7 +1548,7 @@
}
if( app->project!=NULL )
{
- struct GeanyProject *proj = app->project;
+ GeanyProject *proj = app->project;
newstr = gtk_entry_get_text( GTK_ENTRY( lookup_widget( GTK_WIDGET(dialog), "build_1_label" ) ) );
if( !utils_str_equal( newstr, proj->build_1_label ) )
@@ -1687,7 +1687,7 @@
{
GtkWidget *align, *frame;
/* in-dialog heading for the project part of the build commands dialog */
- struct GeanyProject *proj = app->project;
+ GeanyProject *proj = app->project;
frame = ui_frame_new_with_alignment(_("Project build menu commands"), &align);
gtk_container_add(GTK_CONTAINER(vbox), frame);
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