Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 377063 | Differences between
and this patch

Collapse All | Expand All

(-)poppler-python/poppler.defs (+8 lines)
Lines 915-920 Link Here
915
915
916
(define-function document_new_from_file
916
(define-function document_new_from_file
917
  (c-name "poppler_document_new_from_file")
917
  (c-name "poppler_document_new_from_file")
918
  (caller-owns-return #t)
918
  (return-type "PopplerDocument*")
919
  (return-type "PopplerDocument*")
919
  (parameters
920
  (parameters
920
    '("const-char*" "uri")
921
    '("const-char*" "uri")
Lines 925-930 Link Here
925
926
926
(define-function document_new_from_data
927
(define-function document_new_from_data
927
  (c-name "poppler_document_new_from_data")
928
  (c-name "poppler_document_new_from_data")
929
  (caller-owns-return #t)
928
  (return-type "PopplerDocument*")
930
  (return-type "PopplerDocument*")
929
  (parameters
931
  (parameters
930
    '("char*" "data")
932
    '("char*" "data")
Lines 963-968 Link Here
963
(define-method get_page
965
(define-method get_page
964
  (of-object "PopplerDocument")
966
  (of-object "PopplerDocument")
965
  (c-name "poppler_document_get_page")
967
  (c-name "poppler_document_get_page")
968
  (caller-owns-return #t)
966
  (return-type "PopplerPage*")
969
  (return-type "PopplerPage*")
967
  (parameters
970
  (parameters
968
    '("int" "index")
971
    '("int" "index")
Lines 972-977 Link Here
972
(define-method get_page_by_label
975
(define-method get_page_by_label
973
  (of-object "PopplerDocument")
976
  (of-object "PopplerDocument")
974
  (c-name "poppler_document_get_page_by_label")
977
  (c-name "poppler_document_get_page_by_label")
978
  (caller-owns-return #t)
975
  (return-type "PopplerPage*")
979
  (return-type "PopplerPage*")
976
  (parameters
980
  (parameters
977
    '("const-char*" "label")
981
    '("const-char*" "label")
Lines 993-998 Link Here
993
(define-method find_dest
997
(define-method find_dest
994
  (of-object "PopplerDocument")
998
  (of-object "PopplerDocument")
995
  (c-name "poppler_document_find_dest")
999
  (c-name "poppler_document_find_dest")
1000
  (caller-owns-return #t)
996
  (return-type "PopplerDest*")
1001
  (return-type "PopplerDest*")
997
  (parameters
1002
  (parameters
998
    '("const-gchar*" "link_name")
1003
    '("const-gchar*" "link_name")
Lines 1002-1007 Link Here
1002
(define-method get_form_field
1007
(define-method get_form_field
1003
  (of-object "PopplerDocument")
1008
  (of-object "PopplerDocument")
1004
  (c-name "poppler_document_get_form_field")
1009
  (c-name "poppler_document_get_form_field")
1010
  (caller-owns-return #t)
1005
  (return-type "PopplerFormField*")
1011
  (return-type "PopplerFormField*")
1006
  (parameters
1012
  (parameters
1007
    '("gint" "id")
1013
    '("gint" "id")
Lines 1025-1030 Link Here
1025
(define-method copy
1031
(define-method copy
1026
  (of-object "PopplerIndexIter")
1032
  (of-object "PopplerIndexIter")
1027
  (c-name "poppler_index_iter_copy")
1033
  (c-name "poppler_index_iter_copy")
1034
  (caller-owns-return #t)
1028
  (return-type "PopplerIndexIter*")
1035
  (return-type "PopplerIndexIter*")
1029
)
1036
)
1030
1037
Lines 1049-1054 Link Here
1049
(define-method get_action
1056
(define-method get_action
1050
  (of-object "PopplerIndexIter")
1057
  (of-object "PopplerIndexIter")
1051
  (c-name "poppler_index_iter_get_action")
1058
  (c-name "poppler_index_iter_get_action")
1059
  (caller-owns-return #t)
1052
  (return-type "PopplerAction*")
1060
  (return-type "PopplerAction*")
1053
)
1061
)
1054
1062

Return to bug 377063