~ubuntu-branches/ubuntu/maverick/vala/maverick

« back to all changes in this revision

Viewing changes to codegen/valainterfaceregisterfunction.c

  • Committer: Bazaar Package Importer
  • Author(s): Julien Lavergne
  • Date: 2010-02-13 17:59:22 UTC
  • mfrom: (7.3.7 sid)
  • Revision ID: james.westby@ubuntu.com-20100213175922-n8bq2xv2q1hihhqb
Tags: 0.7.10-1ubuntu1
* Sync with Debian unstable.
* Remaining changes :
 - debian/rules: Don't make unit test failures fatal to fix FTBFS. It was
   needed if vala need to enter main but it's not the case for now. 
   (See #374151)

Show diffs side-by-side

added added

removed removed

Lines of Context:
85
85
        char* (*get_gtype_value_table_collect_value_function_name) (ValaTypeRegisterFunction* self);
86
86
        char* (*get_type_flags) (ValaTypeRegisterFunction* self);
87
87
        ValaCCodeFragment* (*get_type_interface_init_declaration) (ValaTypeRegisterFunction* self);
88
 
        ValaCCodeFragment* (*get_type_interface_init_statements) (ValaTypeRegisterFunction* self);
 
88
        ValaCCodeFragment* (*get_type_interface_init_statements) (ValaTypeRegisterFunction* self, gboolean plugin);
89
89
        ValaSymbolAccessibility (*get_accessibility) (ValaTypeRegisterFunction* self);
90
90
};
91
91
 
132
132
static char* vala_interface_register_function_real_get_instance_init_func_name (ValaTypeRegisterFunction* base);
133
133
static char* vala_interface_register_function_real_get_parent_type_name (ValaTypeRegisterFunction* base);
134
134
static ValaSymbolAccessibility vala_interface_register_function_real_get_accessibility (ValaTypeRegisterFunction* base);
135
 
static ValaCCodeFragment* vala_interface_register_function_real_get_type_interface_init_statements (ValaTypeRegisterFunction* base);
 
135
static ValaCCodeFragment* vala_interface_register_function_real_get_type_interface_init_statements (ValaTypeRegisterFunction* base, gboolean plugin);
136
136
static void vala_interface_register_function_finalize (ValaTypeRegisterFunction* obj);
137
137
 
138
138
 
250
250
}
251
251
 
252
252
 
253
 
static ValaCCodeFragment* vala_interface_register_function_real_get_type_interface_init_statements (ValaTypeRegisterFunction* base) {
 
253
static ValaCCodeFragment* vala_interface_register_function_real_get_type_interface_init_statements (ValaTypeRegisterFunction* base, gboolean plugin) {
254
254
        ValaInterfaceRegisterFunction * self;
255
255
        ValaCCodeFragment* result;
256
256
        ValaCCodeFragment* frag;