Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/backend/ev-document-find.c
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <marco@gnome.org>2005-01-30 13:40:03 (GMT)
committer Marco Pesenti Gritti <marco@src.gnome.org>2005-01-30 13:40:03 (GMT)
commit20bac8406dacba5512f116c91ab21b0ad20fabf5 (patch)
tree0aa749d34b92039a78f49ff930a6f0431fb4c3f0 /backend/ev-document-find.c
parenta521d16eb7f59cbda6881b66e0e7a00125377cd8 (diff)
Yay! find works now... Now to find bugs...
2005-01-30 Marco Pesenti Gritti <marco@gnome.org> * pdf/xpdf/pdf-document.cc: * shell/ev-view.c: (draw_rubberband), (highlight_find_results), (expose_bin_window), (find_changed_cb): Yay! find works now... Now to find bugs...
Diffstat (limited to 'backend/ev-document-find.c')
-rw-r--r--backend/ev-document-find.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/backend/ev-document-find.c b/backend/ev-document-find.c
index 01ae739..48c01d8 100644
--- a/backend/ev-document-find.c
+++ b/backend/ev-document-find.c
@@ -109,12 +109,11 @@ ev_document_find_get_result (EvDocumentFind *document_find,
return iface->get_result (document_find, n_result, rectangle);
}
-void
-ev_document_find_get_progress (EvDocumentFind *document_find,
- double percent_complete)
+double
+ev_document_find_get_progress (EvDocumentFind *document_find)
{
EvDocumentFindIface *iface = EV_DOCUMENT_FIND_GET_IFACE (document_find);
- iface->get_progress (document_find, percent_complete);
+ return iface->get_progress (document_find);
}
void