From 3eb0ff8e1f03d27d7fd5ea6c3f8e699a54d31a4c Mon Sep 17 00:00:00 2001 From: Wu Xiaotian Date: Wed, 9 Jan 2019 22:08:17 +0800 Subject: [eel] Avoid deprecated g_type_class_add_private With minimal changes to avoid deprecated g_type_class_add_private --- eel/eel-labeled-image.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'eel/eel-labeled-image.h') diff --git a/eel/eel-labeled-image.h b/eel/eel-labeled-image.h index bb3a4cbb..f5cf5dc3 100644 --- a/eel/eel-labeled-image.h +++ b/eel/eel-labeled-image.h @@ -68,7 +68,7 @@ extern "C" { typedef struct EelLabeledImage EelLabeledImage; typedef struct EelLabeledImageClass EelLabeledImageClass; - typedef struct EelLabeledImageDetails EelLabeledImageDetails; + typedef struct EelLabeledImagePrivate EelLabeledImagePrivate; struct EelLabeledImage { @@ -76,7 +76,7 @@ extern "C" { GtkContainer container; /* Private things */ - EelLabeledImageDetails *details; + EelLabeledImagePrivate *details; }; struct EelLabeledImageClass -- cgit v1.2.1