summaryrefslogtreecommitdiff
path: root/libslab/app-resizer.h
diff options
context:
space:
mode:
authorzhuyaliang <[email protected]>2021-07-22 07:32:23 +0800
committerVictor Kareh <[email protected]>2021-07-28 12:19:22 -0400
commit0a3001cce9c68769ddb9cbf381bedbd2ae5a1850 (patch)
tree990c4eff6b71518b70c2973248b965536069d17b /libslab/app-resizer.h
parent99d2942c83b8e1f2c0278bff284543c5ba825c23 (diff)
downloadmate-control-center-0a3001cce9c68769ddb9cbf381bedbd2ae5a1850.tar.bz2
mate-control-center-0a3001cce9c68769ddb9cbf381bedbd2ae5a1850.tar.xz
Replace the deprecated GtkTable with GtkGrid
Diffstat (limited to 'libslab/app-resizer.h')
-rw-r--r--libslab/app-resizer.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/libslab/app-resizer.h b/libslab/app-resizer.h
index 652ab712..1c65f533 100644
--- a/libslab/app-resizer.h
+++ b/libslab/app-resizer.h
@@ -50,6 +50,8 @@ struct _AppResizer
gboolean table_elements_homogeneous;
gint cur_num_cols;
gboolean setting_style;
+
+ guint column;
AppShellData *app_data;
};
@@ -64,7 +66,7 @@ GType app_resizer_get_type (void);
GtkWidget *app_resizer_new (GtkBox * child, gint initial_num_columns, gboolean homogeneous,
AppShellData * app_data);
void app_resizer_set_table_cache (AppResizer * widget, GList * cache_list);
-void app_resizer_layout_table_default (AppResizer * widget, GtkTable * table, GList * element_list);
+void app_resizer_layout_table_default (AppResizer * widget, GtkGrid * table, GList * element_list);
void app_resizer_set_vadjustment_value (GtkWidget * widget, gdouble value);
G_END_DECLS