mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
fix signal handler signatures
This commit is contained in:
parent
79a939e3cf
commit
5cbd2f28a6
1 changed files with 4 additions and 4 deletions
|
@ -54,9 +54,9 @@ void window_destroy_cb (GtkObject * window, App * app);
|
|||
|
||||
void quit_item_activate_cb (GtkMenuItem * item, App * app);
|
||||
|
||||
void delete_activate_cb (GtkMenuItem * item, App * app);
|
||||
void delete_activate_cb (GtkAction * item, App * app);
|
||||
|
||||
void add_file_activate_cb (GtkMenuItem * item, App * app);
|
||||
void add_file_activate_cb (GtkAction * item, App * app);
|
||||
|
||||
void app_selection_changed_cb (GtkTreeSelection * selection, App * app);
|
||||
|
||||
|
@ -90,7 +90,7 @@ quit_item_activate_cb (GtkMenuItem * item, App * app)
|
|||
}
|
||||
|
||||
void
|
||||
delete_activate_cb (GtkMenuItem * item, App * app)
|
||||
delete_activate_cb (GtkAction * item, App * app)
|
||||
{
|
||||
/* get a gslist of selected track objects */
|
||||
GList *objects = NULL;
|
||||
|
@ -100,7 +100,7 @@ delete_activate_cb (GtkMenuItem * item, App * app)
|
|||
}
|
||||
|
||||
void
|
||||
add_file_activate_cb (GtkMenuItem * item, App * app)
|
||||
add_file_activate_cb (GtkAction * item, App * app)
|
||||
{
|
||||
GST_DEBUG ("add file signal handler");
|
||||
|
||||
|
|
Loading…
Reference in a new issue