diff options
author | TotalCaesar659 <x24cm5b8c54q6szxw@yandex.ru> | 2017-09-28 23:42:20 +0300 |
---|---|---|
committer | Leandro Pereira <leandro@hardinfo.org> | 2017-10-09 08:03:28 -0700 |
commit | 91d5f25b4515e2af7cf5ad1c05db8ad2e57b46ed (patch) | |
tree | b50597a7e4f0eee94484dac8d24ccc4503628e47 /shell | |
parent | 0c17a489bb1305547121235259af99bdf9a67b12 (diff) |
Fixed compilation warning when building on GTK3
Diffstat (limited to 'shell')
-rw-r--r-- | shell/shell.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/shell.c b/shell/shell.c index 8b0834df..8688f9ac 100644 --- a/shell/shell.c +++ b/shell/shell.c @@ -1666,7 +1666,7 @@ static void shell_summary_add_item(ShellSummary *summary, #if GTK_CHECK_VERSION(3, 0, 0) GtkWidget *frame_box; frame_box = gtk_box_new(GTK_ORIENTATION_HORIZONTAL, 5); - gtk_widget_set_margin_start(GTK_BOX(frame_box), 48); + gtk_widget_set_margin_start(GTK_WIDGET(frame_box), 48); gtk_box_pack_start(GTK_BOX(frame_box), content, FALSE, FALSE, 0); gtk_container_add(GTK_CONTAINER(frame), frame_box); #else |