diff options
author | José Aliste <[email protected]> | 2013-02-13 16:23:35 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2017-08-28 16:04:00 +0200 |
commit | 4fc55be84bb852515958c2030d1109c783d5698f (patch) | |
tree | e8edbf28d49f55f8f6a604519ec9f77aef9e48f6 /libdocument/ev-form-field.c | |
parent | 9f70b4ff8f9bff8671c886294f1b3403ce4c1067 (diff) | |
download | atril-4fc55be84bb852515958c2030d1109c783d5698f.tar.bz2 atril-4fc55be84bb852515958c2030d1109c783d5698f.tar.xz |
libdocument: Add activation_link to EvFormField struct
origin commit:
https://git.gnome.org/browse/evince/commit/?h=gnome-3-10&id=5410cf9
Diffstat (limited to 'libdocument/ev-form-field.c')
-rw-r--r-- | libdocument/ev-form-field.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libdocument/ev-form-field.c b/libdocument/ev-form-field.c index 08e504e4..b744eb8f 100644 --- a/libdocument/ev-form-field.c +++ b/libdocument/ev-form-field.c @@ -55,6 +55,8 @@ ev_form_field_finalize (GObject *object) g_object_unref (field->page); field->page = NULL; + g_clear_object (&field->activation_link); + (* G_OBJECT_CLASS (ev_form_field_parent_class)->finalize) (object); } |