Changeset 3269

Show
Ignore:
Timestamp:
01/16/08 16:23:56
Author:
pvanhoof
Message:

Python bindings fix

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/bindings/python/tinymail-base.defs

    r3194 r3269  
    28612861) 
    28622862 
    2863 (define-method construct_from_stream 
    2864   (of-object "TnyMimePart") 
    2865   (c-name "tny_mime_part_construct_from_stream") 
     2863(define-method construct 
     2864  (of-object "TnyMimePart") 
     2865  (c-name "tny_mime_part_construct") 
    28662866  (return-type "gint") 
    28672867  (parameters 
    28682868    '("TnyStream*" "stream") 
    2869     '("const-gchar*" "type") 
     2869    '("const-gchar*" "mime_type") 
     2870    '("const-gchar*" "transfer_encoding") 
    28702871  ) 
    28712872) 
     
    30503051) 
    30513052 
    3052 (define-virtual construct_from_stream_func 
     3053(define-virtual construct_func 
    30533054  (of-object "TnyMimePart") 
    30543055  (return-type "gint") 
    30553056  (parameters 
    30563057    '("TnyStream*" "stream") 
    3057     '("const-gchar*" "type") 
     3058    '("const-gchar*" "mime_type") 
     3059    '("const-gchar*" "transfer_encoding") 
    30583060  ) 
    30593061)