summaryrefslogtreecommitdiff
path: root/tests/scrolling-performance.c
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 /tests/scrolling-performance.c
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 'tests/scrolling-performance.c')
-rw-r--r--tests/scrolling-performance.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/scrolling-performance.c b/tests/scrolling-performance.c
index abae772b25..3d5b165623 100644
--- a/tests/scrolling-performance.c
+++ b/tests/scrolling-performance.c
@@ -128,7 +128,7 @@ main (int argc, char **argv)
frame_stats_ensure (GTK_WINDOW (window));
gtk_window_set_default_size (GTK_WINDOW (window), 800, 600);
- scrolled_window = gtk_scrolled_window_new (NULL, NULL);
+ scrolled_window = gtk_scrolled_window_new ();
gtk_window_set_child (GTK_WINDOW (window), scrolled_window);
viewport = gtk_viewport_new (NULL, NULL);