Fix passing wrong pointer to the File Open dialog for the Run command in the Project Properties dialog.
git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@3755 ea778897-0a13-0410-b9d1-a72fbfd435f5
This commit is contained in:
parent
6d1371eec2
commit
ef87bbe5b7
@ -3,6 +3,9 @@
|
|||||||
* src/callbacks.c, src/callbacks.h, src/main.c:
|
* src/callbacks.c, src/callbacks.h, src/main.c:
|
||||||
Update the View->Fullscreen menu item when fullscreen state is
|
Update the View->Fullscreen menu item when fullscreen state is
|
||||||
changed externally (e.g. by the window manager).
|
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>
|
2009-04-27 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
|
||||||
|
@ -462,7 +462,7 @@ static void create_properties_dialog(PropertyDialogElements *e)
|
|||||||
"Options can be appended to the command. "
|
"Options can be appended to the command. "
|
||||||
"Leave blank to use the default run command."));
|
"Leave blank to use the default run command."));
|
||||||
button = gtk_button_new();
|
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);
|
image = gtk_image_new_from_stock("gtk-open", GTK_ICON_SIZE_BUTTON);
|
||||||
gtk_container_add(GTK_CONTAINER(button), image);
|
gtk_container_add(GTK_CONTAINER(button), image);
|
||||||
bbox = gtk_hbox_new(FALSE, 6);
|
bbox = gtk_hbox_new(FALSE, 6);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user