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

« back to all changes in this revision

Viewing changes to vala/valaregexliteral.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:
1518
1518
 
1519
1519
void vala_regex_literal_set_value (ValaRegexLiteral* self, const gchar* value) {
1520
1520
        gchar* _tmp0_;
1521
 
        gchar* _tmp1_;
1522
1521
        g_return_if_fail (self != NULL);
1523
1522
        _tmp0_ = g_strdup (value);
1524
 
        _tmp1_ = _tmp0_;
1525
1523
        _g_free0 (self->priv->_value);
1526
 
        self->priv->_value = _tmp1_;
 
1524
        self->priv->_value = _tmp0_;
1527
1525
}
1528
1526
 
1529
1527