window: Remove unnecessary wrapper functions

These were only used by CcApplication, and at this level
of the program we don't need to use any wrapper functions,
since we're certain that the CcWindow is a GtkWindow subclass.
This commit is contained in:
Georges Basile Stavracas Neto 2018-01-21 10:20:06 -02:00
parent 4f40a2fa33
commit 3632bc7dad
3 changed files with 2 additions and 18 deletions

View file

@ -752,18 +752,6 @@ cc_window_new (GtkApplication *application)
NULL);
}
void
cc_window_present (CcWindow *center)
{
gtk_window_present (GTK_WINDOW (center));
}
void
cc_window_show (CcWindow *center)
{
gtk_window_present (GTK_WINDOW (center));
}
void
cc_window_set_overview_page (CcWindow *center)
{