2006-12-13 Carlos Garcia Campos <carlosgc@gnome.org>
* pdf/ev-poppler.cc: (pdf_document_find_get_n_results),
(pdf_document_find_get_result), (pdf_document_find_page_has_results),
(pdf_document_find_get_progress), (pdf_selection_render_selection),
(pdf_selection_get_selection_region),
(pdf_selection_get_selection_map):
Add "static" to some private functions.
+2006-12-13 Carlos Garcia Campos <carlosgc@gnome.org>
+
+ * pdf/ev-poppler.cc: (pdf_document_find_get_n_results),
+ (pdf_document_find_get_result), (pdf_document_find_page_has_results),
+ (pdf_document_find_get_progress), (pdf_selection_render_selection),
+ (pdf_selection_get_selection_region),
+ (pdf_selection_get_selection_map):
+
+ Add "static" to some private functions.
+
2006-12-13 P. Henrique Silva <ph.silva@gmail.com>
* lib/ev-tooltip.h:
search_string);
}
-int
+static int
pdf_document_find_get_n_results (EvDocumentFind *document_find, int page)
{
PdfDocumentSearch *search = PDF_DOCUMENT (document_find)->search;
}
}
-gboolean
+static gboolean
pdf_document_find_get_result (EvDocumentFind *document_find,
int page,
int n_result,
return TRUE;
}
-int
+static int
pdf_document_find_page_has_results (EvDocumentFind *document_find,
int page)
{
return search && search->pages[page] != NULL;
}
-double
+static double
pdf_document_find_get_progress (EvDocumentFind *document_find)
{
PdfDocumentSearch *search;
iface->end = pdf_document_file_exporter_end;
}
-void
+static void
pdf_selection_render_selection (EvSelection *selection,
EvRenderContext *rc,
GdkPixbuf **pixbuf,
}
-GdkRegion *
+static GdkRegion *
pdf_selection_get_selection_region (EvSelection *selection,
EvRenderContext *rc,
EvRectangle *points)
return retval;
}
-GdkRegion *
+static GdkRegion *
pdf_selection_get_selection_map (EvSelection *selection,
EvRenderContext *rc)
{