summaryrefslogtreecommitdiff
path: root/gtk/gtkstack.c
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2018-03-11 00:29:46 -0500
committerMatthias Clasen <mclasen@redhat.com>2018-03-11 00:31:44 -0500
commitd55da3fd4411f35ea96aa86b92cb7b04c9f4c738 (patch)
tree5dc66041f55374de0762db570514d3b6cd867318 /gtk/gtkstack.c
parent7c18911c0082b5b189f3bbed4e7261f172e6130c (diff)
downloadgtk+-d55da3fd4411f35ea96aa86b92cb7b04c9f4c738.tar.gz
Use GtkSnapshot getters
We can avoid direct struct access and gtksnapshotprivate.h everywhere.
Diffstat (limited to 'gtk/gtkstack.c')
-rw-r--r--gtk/gtkstack.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/gtkstack.c b/gtk/gtkstack.c
index 172801e194..a14f4730d5 100644
--- a/gtk/gtkstack.c
+++ b/gtk/gtkstack.c
@@ -28,7 +28,7 @@
#include "gtkcontainerprivate.h"
#include "gtkprogresstrackerprivate.h"
#include "gtksettingsprivate.h"
-#include "gtksnapshotprivate.h"
+#include "gtksnapshot.h"
#include "gtkwidgetprivate.h"
#include "a11y/gtkstackaccessible.h"
#include "a11y/gtkstackaccessibleprivate.h"
@@ -1957,7 +1957,7 @@ gtk_stack_snapshot (GtkWidget *widget,
gtk_widget_get_allocation (priv->last_visible_child->widget,
&priv->last_visible_surface_allocation);
last_visible_snapshot = gtk_snapshot_new (gtk_snapshot_get_renderer (snapshot),
- snapshot->record_names,
+ gtk_snapshot_get_record_names (snapshot),
NULL,
"StackCaptureLastVisibleChild");
gtk_widget_snapshot (priv->last_visible_child->widget, last_visible_snapshot);