File tree Expand file tree Collapse file tree 1 file changed +2
-10
lines changed Expand file tree Collapse file tree 1 file changed +2
-10
lines changed Original file line number Diff line number Diff line change @@ -38,14 +38,6 @@ typedef struct {
38
38
} OpenData ;
39
39
40
40
41
- static void
42
- open_data_free (OpenData * o_data )
43
- {
44
- path_list_free (o_data -> file_list );
45
- g_free (o_data );
46
- }
47
-
48
-
49
41
static void
50
42
app_chooser_response_cb (GtkDialog * dialog ,
51
43
int response_id ,
@@ -61,13 +53,13 @@ app_chooser_response_cb (GtkDialog *dialog,
61
53
fr_window_open_files_with_application (o_data -> window , o_data -> file_list , app_info );
62
54
g_object_unref (app_info );
63
55
}
64
- open_data_free (o_data );
56
+ g_free (o_data );
65
57
gtk_widget_destroy (GTK_WIDGET (dialog ));
66
58
break ;
67
59
68
60
case GTK_RESPONSE_CANCEL :
69
61
case GTK_RESPONSE_DELETE_EVENT :
70
- open_data_free (o_data );
62
+ g_free (o_data );
71
63
gtk_widget_destroy (GTK_WIDGET (dialog ));
72
64
break ;
73
65
You can’t perform that action at this time.
0 commit comments