summaryrefslogtreecommitdiff
path: root/libview
diff options
context:
space:
mode:
authorraveit65 <[email protected]>2016-06-23 12:20:40 +0200
committerraveit65 <[email protected]>2016-06-24 20:48:20 +0200
commitd0056f66f2d719eef718f3770dcbb6130a25101e (patch)
tree7f7859c7d8ddfaa1696195e3e795bd5a37af7573 /libview
parenta89b45d36cae65743d7524682d3f79b55112dea0 (diff)
downloadatril-d0056f66f2d719eef718f3770dcbb6130a25101e.tar.bz2
atril-d0056f66f2d719eef718f3770dcbb6130a25101e.tar.xz
libdocument: Make EvSourceLink boxed.
https://bugzilla.gnome.org/show_bug.cgi?id=635705 taken from: https://git.gnome.org/browse/evince/commit/?id=0ac0898
Diffstat (limited to 'libview')
-rw-r--r--libview/ev-view.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libview/ev-view.c b/libview/ev-view.c
index 413acf20..9ddf78d2 100644
--- a/libview/ev-view.c
+++ b/libview/ev-view.c
@@ -3062,7 +3062,7 @@ ev_view_synctex_backward_search (EvView *view,
link = ev_document_synctex_backward_search (view->document, page, x_new, y_new);
if (link) {
g_signal_emit (view, signals[SIGNAL_SYNC_SOURCE], 0, link);
- g_free (link);
+ ev_source_link_free (link);
return TRUE;
}