fix vipssave parent class
oops, was not typing parent_class correctly
This commit is contained in:
parent
5d229e0b9e
commit
1650332906
|
@ -152,10 +152,9 @@ vips_foreign_save_vips_init( VipsForeignSaveVips *vips )
|
||||||
}
|
}
|
||||||
|
|
||||||
typedef struct _VipsForeignSaveVipsFile {
|
typedef struct _VipsForeignSaveVipsFile {
|
||||||
VipsForeignSave parent_object;
|
VipsForeignSaveVips parent_object;
|
||||||
|
|
||||||
char *filename;
|
char *filename;
|
||||||
|
|
||||||
} VipsForeignSaveVipsFile;
|
} VipsForeignSaveVipsFile;
|
||||||
|
|
||||||
typedef VipsForeignSaveVipsClass VipsForeignSaveVipsFileClass;
|
typedef VipsForeignSaveVipsClass VipsForeignSaveVipsFileClass;
|
||||||
|
@ -206,7 +205,7 @@ vips_foreign_save_vips_file_init( VipsForeignSaveVipsFile *file )
|
||||||
}
|
}
|
||||||
|
|
||||||
typedef struct _VipsForeignSaveVipsTarget {
|
typedef struct _VipsForeignSaveVipsTarget {
|
||||||
VipsForeignSave parent_object;
|
VipsForeignSaveVips parent_object;
|
||||||
|
|
||||||
VipsTarget *target;
|
VipsTarget *target;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue