diff options
author | zhuyaliang <[email protected]> | 2021-07-22 07:32:23 +0800 |
---|---|---|
committer | Victor Kareh <[email protected]> | 2021-07-28 12:19:22 -0400 |
commit | 0a3001cce9c68769ddb9cbf381bedbd2ae5a1850 (patch) | |
tree | 990c4eff6b71518b70c2973248b965536069d17b /libslab/app-shell.c | |
parent | 99d2942c83b8e1f2c0278bff284543c5ba825c23 (diff) | |
download | mate-control-center-0a3001cce9c68769ddb9cbf381bedbd2ae5a1850.tar.bz2 mate-control-center-0a3001cce9c68769ddb9cbf381bedbd2ae5a1850.tar.xz |
Replace the deprecated GtkTable with GtkGrid
Diffstat (limited to 'libslab/app-shell.c')
-rw-r--r-- | libslab/app-shell.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libslab/app-shell.c b/libslab/app-shell.c index 6b421c74..6ca880bc 100644 --- a/libslab/app-shell.c +++ b/libslab/app-shell.c @@ -723,9 +723,9 @@ create_application_category_sections (AppShellData * app_data) g_free (markup); hbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 0); - table = gtk_table_new (0, 0, TRUE); - gtk_table_set_col_spacings (GTK_TABLE (table), 5); - gtk_table_set_row_spacings (GTK_TABLE (table), 5); + table = gtk_grid_new (); + gtk_grid_set_column_spacing (GTK_GRID (table), 5); + gtk_grid_set_row_spacing (GTK_GRID (table), 5); gtk_box_pack_start (GTK_BOX (hbox), table, FALSE, FALSE, 15); slab_section_set_contents (SLAB_SECTION (data->section), hbox); } @@ -804,7 +804,7 @@ populate_application_category_section (AppShellData * app_data, SlabSection * se GList * launcher_list) { GtkWidget *hbox; - GtkTable *table; + GtkGrid *table; GList *children; hbox = GTK_WIDGET (section->contents); @@ -813,8 +813,8 @@ populate_application_category_section (AppShellData * app_data, SlabSection * se table = children->data; g_list_free (children); - /* Make sure our implementation has not changed and it's still a GtkTable */ - g_assert (GTK_IS_TABLE (table)); + /* Make sure our implementation has not changed and it's still a GtkGrid */ + g_assert (GTK_IS_GRID (table)); app_data->cached_tables_list = g_list_append (app_data->cached_tables_list, table); |