diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2018-04-05 18:09:02 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2018-04-05 18:09:02 (GMT) |
commit | b15f45921eea3dda27a4f03c9928fbd9c6418a54 (patch) | |
tree | 2f2e1839c045abaf24491f0cdbf1e7762447053c /plugins/dex | |
parent | 50dcb7b1f40bb9e66d4872a7eebd364c6ea11125 (diff) |
Fixed and updated GType macros dealing with non-existent interfaces.
Diffstat (limited to 'plugins/dex')
-rwxr-xr-x | plugins/dex/format.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/plugins/dex/format.h b/plugins/dex/format.h index d8fdd6b..81a4b0f 100755 --- a/plugins/dex/format.h +++ b/plugins/dex/format.h @@ -37,11 +37,12 @@ -#define G_TYPE_DEX_FORMAT g_dex_format_get_type() -#define G_DEX_FORMAT(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), g_dex_format_get_type(), GDexFormat)) -#define G_IS_DEX_FORMAT(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), g_dex_format_get_type())) -#define G_DEX_FORMAT_GET_IFACE(inst) (G_TYPE_INSTANCE_GET_INTERFACE((inst), g_dex_format_get_type(), GDexFormatIface)) -#define G_DEX_FORMAT_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), G_TYPE_DEX_FORMAT, GDexFormatClass)) +#define G_TYPE_DEX_FORMAT g_dex_format_get_type() +#define G_DEX_FORMAT(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), G_TYPE_DEX_FORMAT, GDexFormat)) +#define G_IS_DEX_FORMAT(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), G_TYPE_DEX_FORMAT)) +#define G_DEX_FORMAT_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), G_TYPE_DEX_FORMAT, GDexFormatClass)) +#define G_IS_DEX_FORMAT_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), G_TYPE_DEX_FORMAT)) +#define G_DEX_FORMAT_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), G_TYPE_DEX_FORMAT, GDexFormatClass)) /* Format d'exécutable DEX (instance) */ |