Fix for matrix-http-client

The instance and class structs had a bad parent referenc
This commit is contained in:
Gergely Polonkai 2016-03-02 13:34:57 +01:00
parent eb17da9f57
commit fed43df034
1 changed files with 2 additions and 2 deletions

View File

@ -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;