Skip to content

Commit

Permalink
ev-job-find: mark two methods as skip
Browse files Browse the repository at this point in the history
Methods that use a double pointer to a GList cannot be annotated
properly, so skip them until we have a better introspectable API.

https://bugzilla.gnome.org/show_bug.cgi?id=691354
  • Loading branch information
Cosimo Cecchi committed Jan 28, 2013
1 parent 1d87fc5 commit 7d9c9de
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
6 changes: 6 additions & 0 deletions libview/ev-jobs.c
Original file line number Diff line number Diff line change
Expand Up @@ -1690,6 +1690,12 @@ ev_job_find_has_results (EvJobFind *job)
return job->has_results;
}

/**
* ev_job_find_get_results: (skip)
* @job: an #EvJobFind
*
* Returns: a #GList of #GList<!-- -->s containing #EvRectangle<!-- -->s
*/
GList **
ev_job_find_get_results (EvJobFind *job)
{
Expand Down
6 changes: 6 additions & 0 deletions libview/ev-view.c
Original file line number Diff line number Diff line change
Expand Up @@ -5929,6 +5929,12 @@ ev_view_find_started (EvView *view, EvJobFind *job)
g_signal_connect (job, "updated", G_CALLBACK (find_job_updated_cb), view);
}

/**
* ev_view_find_changed: (skip)
* @view: an #EvView
* @results: the results as returned by ev_job_find_get_results()
* @page: page index
*/
void
ev_view_find_changed (EvView *view, GList **results, gint page)
{
Expand Down

0 comments on commit 7d9c9de

Please sign in to comment.