diff options
author | Darin Adler <darin@src.gnome.org> | 2001-11-09 02:05:53 +0000 |
---|---|---|
committer | Darin Adler <darin@src.gnome.org> | 2001-11-09 02:05:53 +0000 |
commit | 4a2255079a7276551867636b356b5bcbc0aec410 (patch) | |
tree | 69eb88b13b8b7b00ee7c45f23324f060643e218c /libnautilus-private/nautilus-program-chooser.c | |
parent | ee16c763834e080df4649df8df8af7ec85903539 (diff) | |
download | nautilus-4a2255079a7276551867636b356b5bcbc0aec410.tar.gz |
Lots of files. Get rid a lot of unneeded casts.
* Lots of files.
Get rid a lot of unneeded casts.
Diffstat (limited to 'libnautilus-private/nautilus-program-chooser.c')
-rw-r--r-- | libnautilus-private/nautilus-program-chooser.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libnautilus-private/nautilus-program-chooser.c b/libnautilus-private/nautilus-program-chooser.c index f8482d6f1..1ed175765 100644 --- a/libnautilus-private/nautilus-program-chooser.c +++ b/libnautilus-private/nautilus-program-chooser.c @@ -1216,7 +1216,7 @@ create_program_clist () */ gtk_clist_set_compare_func (clist, compare_program_file_pairs); - g_signal_connect (G_OBJECT (clist), + g_signal_connect (clist, "click_column", G_CALLBACK (switch_sort_column), NULL); @@ -1332,7 +1332,7 @@ nautilus_program_chooser_new (GnomeVFSMimeActionType action_type, gtk_widget_show (change_button); gtk_box_pack_end (GTK_BOX (change_button_holder), change_button, TRUE, FALSE, 0); - g_signal_connect (G_OBJECT (change_button), + g_signal_connect (change_button, "clicked", G_CALLBACK (run_program_configurator_callback), window); @@ -1352,7 +1352,7 @@ nautilus_program_chooser_new (GnomeVFSMimeActionType action_type, gtk_box_pack_end (GTK_BOX (capplet_hbox), capplet_button_vbox, FALSE, FALSE, 0); capplet_button = gtk_button_new_with_mnemonic (_("_Go There")); - g_signal_connect (G_OBJECT (capplet_button), + g_signal_connect (capplet_button, "clicked", G_CALLBACK (launch_mime_capplet_and_close_dialog), window); @@ -1378,7 +1378,7 @@ nautilus_program_chooser_new (GnomeVFSMimeActionType action_type, update_selected_item_details (GTK_DIALOG (window)); /* Update selected item info whenever selection changes. */ - g_signal_connect (G_OBJECT (clist), + g_signal_connect (clist, "select_row", G_CALLBACK (program_list_selection_changed_callback), window); @@ -1491,7 +1491,7 @@ nautilus_program_chooser_show_no_choices_message (GnomeVFSMimeActionType action_ dialog = eel_show_yes_no_dialog (prompt, dialog_title, GTK_STOCK_OK, GTK_STOCK_CANCEL, parent_window); - g_signal_connect (G_OBJECT (dialog), "response", + g_signal_connect (dialog, "response", G_CALLBACK (launch_mime_capplet_on_ok), nautilus_file_get_mime_type (file)); |