summaryrefslogtreecommitdiff
path: root/examples/application4
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2020-06-24 11:25:09 -0400
committerMatthias Clasen <mclasen@redhat.com>2020-06-24 11:25:09 -0400
commit386b63b85d803b593142ccb074524693d047a66a (patch)
tree5731d1acf8d9c453f3513c171de4b6aec55de135 /examples/application4
parent2cfeb1048c1090b7ce99638bd19feaf41246a8f2 (diff)
downloadgtk+-386b63b85d803b593142ccb074524693d047a66a.tar.gz
scrolledwindow: Don't take adjustments in new()
In 99.9% of all cases, these are just NULL, NULL. So just do away with these arguments, people can use the setters for the rare cases where they want the scrolled window to use a different adjustment.
Diffstat (limited to 'examples/application4')
-rw-r--r--examples/application4/exampleappwin.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/application4/exampleappwin.c b/examples/application4/exampleappwin.c
index bcc72807af..97f8209cd3 100644
--- a/examples/application4/exampleappwin.c
+++ b/examples/application4/exampleappwin.c
@@ -53,7 +53,7 @@ example_app_window_open (ExampleAppWindow *win,
basename = g_file_get_basename (file);
- scrolled = gtk_scrolled_window_new (NULL, NULL);
+ scrolled = gtk_scrolled_window_new ();
gtk_widget_set_hexpand (scrolled, TRUE);
gtk_widget_set_vexpand (scrolled, TRUE);
view = gtk_text_view_new ();