Changed application_activate_cb() signature
Made it so casting is no longer needed inside.
This commit is contained in:
parent
12aa52f3fb
commit
bfcf78e81b
@ -44,10 +44,10 @@ run_action(AgApp *app, gboolean is_remote)
|
||||
}
|
||||
|
||||
static void
|
||||
application_activate_cb(GtkApplication *app, gpointer user_data)
|
||||
application_activate_cb(AgApp *app, gpointer user_data)
|
||||
{
|
||||
ag_app_new_window(AG_APP(app));
|
||||
run_action(AG_APP(app), FALSE);
|
||||
ag_app_new_window(app);
|
||||
run_action(app, FALSE);
|
||||
}
|
||||
|
||||
int
|
||||
|
Loading…
Reference in New Issue
Block a user