widget: Make queue_compute_expand() private

Nobody needs to call this anymore.
This commit is contained in:
Timm Bäder 2019-07-07 07:36:29 +02:00
parent 042f7d117f
commit 633172fd66
3 changed files with 3 additions and 4 deletions

View File

@ -4604,7 +4604,6 @@ gtk_widget_get_vexpand
gtk_widget_set_vexpand
gtk_widget_get_vexpand_set
gtk_widget_set_vexpand_set
gtk_widget_queue_compute_expand
gtk_widget_compute_expand
<SUBSECTION Templates>

View File

@ -713,6 +713,8 @@ static gboolean gtk_widget_class_get_visible_by_default (GtkWidgetClass *widget_
static void remove_parent_surface_transform_changed_listener (GtkWidget *widget);
static void add_parent_surface_transform_changed_listener (GtkWidget *widget);
static void gtk_widget_queue_compute_expand (GtkWidget *widget);
/* --- variables --- */
@ -8955,7 +8957,7 @@ gtk_widget_update_computed_expand (GtkWidget *widget)
*
* See gtk_widget_compute_expand().
*/
void
static void
gtk_widget_queue_compute_expand (GtkWidget *widget)
{
GtkWidget *parent;

View File

@ -645,8 +645,6 @@ GDK_AVAILABLE_IN_ALL
void gtk_widget_set_vexpand_set (GtkWidget *widget,
gboolean set);
GDK_AVAILABLE_IN_ALL
void gtk_widget_queue_compute_expand (GtkWidget *widget);
GDK_AVAILABLE_IN_ALL
gboolean gtk_widget_compute_expand (GtkWidget *widget,
GtkOrientation orientation);