Search
lxdream.org :: lxdream/src/gtkui/gtkcb.c :: diff
lxdream 0.9.1
released Jun 29
Download Now
filename src/gtkui/gtkcb.c
changeset 1072:d82e04e6d497
prev1041:5fcc39857c5c
next1109:700c5ab26a63
author nkeynes
date Sun Dec 20 21:19:09 2009 +1000 (14 years ago)
permissions -rw-r--r--
last change Make sure there's a trailing new-line after the cpu registers are printed
file annotate diff log raw
1.1 --- a/src/gtkui/gtkcb.c Fri Jun 26 05:47:04 2009 +0000
1.2 +++ b/src/gtkui/gtkcb.c Sun Dec 20 21:19:09 2009 +1000
1.3 @@ -79,7 +79,7 @@
1.4 int initial_dir_key )
1.5 {
1.6 GtkWidget *file;
1.7 - gchar *filename;
1.8 + gchar *filename = NULL;
1.9
1.10 file = gtk_file_chooser_dialog_new( title, NULL,
1.11 GTK_FILE_CHOOSER_ACTION_SAVE,
1.12 @@ -257,7 +257,7 @@
1.13
1.14 void path_settings_callback( GtkAction *action, gpointer user_data)
1.15 {
1.16 - path_dialog_run();
1.17 + gtk_configuration_panel_run( _("Path Settings"), lxdream_get_config_group(CONFIG_GROUP_GLOBAL) );
1.18 }
1.19
1.20 void audio_settings_callback( GtkAction *action, gpointer user_data)
1.21 @@ -279,7 +279,7 @@
1.22
1.23 void hotkey_settings_callback( GtkAction *action, gpointer user_data)
1.24 {
1.25 - hotkeys_dialog_run();
1.26 + gtk_configuration_panel_run( _("Hotkey Settings"), lxdream_get_config_group(CONFIG_GROUP_HOTKEYS) );
1.27 }
1.28
1.29 void fullscreen_toggle_callback( GtkToggleAction *action, gpointer user_data)
.