~ubuntu-branches/ubuntu/quantal/vala-0.16/quantal

« back to all changes in this revision

Viewing changes to codegen/valaccodestructmodule.vala

  • Committer: Package Import Robot
  • Author(s): Rico Tzschichholz
  • Date: 2012-02-28 20:20:50 UTC
  • mfrom: (1.1.2)
  • Revision ID: package-import@ubuntu.com-20120228202050-nowzcc7uhxomtrs2
Tags: 0.15.2-0ubuntu1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
90
90
                                        var delegate_type = (DelegateType) f.variable_type;
91
91
                                        if (delegate_type.delegate_symbol.has_target) {
92
92
                                                // create field to store delegate target
93
 
                                                instance_struct.add_field ("gpointer", get_delegate_target_cname (f.name));
 
93
                                                instance_struct.add_field ("gpointer", get_ccode_delegate_target_name (f));
94
94
                                                if (delegate_type.value_owned) {
95
95
                                                        instance_struct.add_field ("GDestroyNotify", get_delegate_target_destroy_notify_cname (f.name));
96
96
                                                }