~ubuntu-branches/ubuntu/vivid/vala/vivid

« back to all changes in this revision

Viewing changes to gee/collectionobject.c

  • Committer: Bazaar Package Importer
  • Author(s): Sebastian Dröge
  • Date: 2010-09-05 10:32:13 UTC
  • mfrom: (1.5.9 upstream) (28.1.2 experimental)
  • Revision ID: james.westby@ubuntu.com-20100905103213-8nn88erk20o4wgm3
Tags: 0.9.8-1
New upstream development release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
137
137
        }
138
138
        if (!value->data[0].v_pointer) {
139
139
                *object_p = NULL;
140
 
        } else if (collect_flags && G_VALUE_NOCOPY_CONTENTS) {
 
140
        } else if (collect_flags & G_VALUE_NOCOPY_CONTENTS) {
141
141
                *object_p = value->data[0].v_pointer;
142
142
        } else {
143
143
                *object_p = vala_collection_object_ref (value->data[0].v_pointer);