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

« back to all changes in this revision

Viewing changes to ccode/valaccodelabel.c

  • Committer: Bazaar Package Importer
  • Author(s): Robert Ancell
  • Date: 2011-03-17 09:35:15 UTC
  • mfrom: (1.5.17 upstream)
  • Revision ID: james.westby@ubuntu.com-20110317093515-veyqriw9egujkws2
Tags: 0.11.7-0ubuntu1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
190
190
 
191
191
void vala_ccode_label_set_name (ValaCCodeLabel* self, const gchar* value) {
192
192
        gchar* _tmp0_;
193
 
        gchar* _tmp1_;
194
193
        g_return_if_fail (self != NULL);
195
194
        _tmp0_ = g_strdup (value);
196
 
        _tmp1_ = _tmp0_;
197
195
        _g_free0 (self->priv->_name);
198
 
        self->priv->_name = _tmp1_;
 
196
        self->priv->_name = _tmp0_;
199
197
}
200
198
 
201
199