Revision: 3755 http://geany.svn.sourceforge.net/geany/?rev=3755&view=rev Author: eht16 Date: 2009-04-30 17:17:28 +0000 (Thu, 30 Apr 2009)
Log Message: ----------- Fix passing wrong pointer to the File Open dialog for the Run command in the Project Properties dialog.
Modified Paths: -------------- trunk/ChangeLog trunk/src/project.c
Modified: trunk/ChangeLog =================================================================== --- trunk/ChangeLog 2009-04-30 17:17:13 UTC (rev 3754) +++ trunk/ChangeLog 2009-04-30 17:17:28 UTC (rev 3755) @@ -3,6 +3,9 @@ * src/callbacks.c, src/callbacks.h, src/main.c: Update the View->Fullscreen menu item when fullscreen state is changed externally (e.g. by the window manager). + * src/project.c: + Fix passing wrong pointer to the File Open dialog for the Run + command in the Project Properties dialog.
2009-04-27 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
Modified: trunk/src/project.c =================================================================== --- trunk/src/project.c 2009-04-30 17:17:13 UTC (rev 3754) +++ trunk/src/project.c 2009-04-30 17:17:28 UTC (rev 3755) @@ -462,7 +462,7 @@ "Options can be appended to the command. " "Leave blank to use the default run command.")); button = gtk_button_new(); - g_signal_connect(button, "clicked", G_CALLBACK(on_file_open_button_clicked), e->run_cmd); + g_signal_connect(button, "clicked", G_CALLBACK(on_file_open_button_clicked), e); image = gtk_image_new_from_stock("gtk-open", GTK_ICON_SIZE_BUTTON); gtk_container_add(GTK_CONTAINER(button), image); bbox = gtk_hbox_new(FALSE, 6);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.