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:
Diffstat (limited to 'backend/ev-document-find.c')
-rw-r--r--backend/ev-document-find.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/backend/ev-document-find.c b/backend/ev-document-find.c
index 9dc05c4..01ae739 100644
--- a/backend/ev-document-find.c
+++ b/backend/ev-document-find.c
@@ -58,8 +58,9 @@ ev_document_find_base_init (gpointer g_class)
G_SIGNAL_RUN_LAST,
G_STRUCT_OFFSET (EvDocumentFindIface, find_changed),
NULL, NULL,
- g_cclosure_marshal_VOID__VOID,
- G_TYPE_NONE, 0);
+ g_cclosure_marshal_VOID__INT,
+ G_TYPE_NONE, 1,
+ G_TYPE_INT);
initialized = TRUE;
}
@@ -117,8 +118,8 @@ ev_document_find_get_progress (EvDocumentFind *document_find,
}
void
-ev_document_find_changed (EvDocumentFind *document_find)
+ev_document_find_changed (EvDocumentFind *document_find, int page)
{
- g_signal_emit_by_name (document_find, "find_changed");
+ g_signal_emit_by_name (document_find, "find_changed", page);
}