From fed43df0345b0ffbe5cc1b529e643897aaef7ba8 Mon Sep 17 00:00:00 2001 From: Gergely Polonkai Date: Wed, 2 Mar 2016 13:34:57 +0100 Subject: [PATCH] Fix for matrix-http-client The instance and class structs had a bad parent referenc --- src/matrix-http-client.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/matrix-http-client.h b/src/matrix-http-client.h index c9f793a..d0ce11d 100644 --- a/src/matrix-http-client.h +++ b/src/matrix-http-client.h @@ -36,11 +36,11 @@ typedef struct _MatrixHTTPClient MatrixHTTPClient; typedef struct _MatrixHTTPClientClass MatrixHTTPClientClass; struct _MatrixHTTPClient { - GObject parent_instance; + MatrixHTTPAPI parent_instance; }; struct _MatrixHTTPClientClass { - GObjectClass parent_class; + MatrixHTTPAPIClass parent_class; }; GType matrix_http_client_get_type(void) G_GNUC_CONST;