~ubuntu-branches/ubuntu/lucid/giggle/lucid

« back to all changes in this revision

Viewing changes to src/giggle-ref.c

  • Committer: Bazaar Package Importer
  • Author(s): Andrea Corradi
  • Date: 2007-05-09 21:16:35 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20070509211635-p0wst0b2b7qdns12
Tags: 0.3-1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
188
188
 
189
189
        return priv->name;
190
190
}
 
191
 
 
192
G_CONST_RETURN gchar *
 
193
giggle_ref_get_sha (GiggleRef *ref)
 
194
{
 
195
        GiggleRefPriv *priv;
 
196
 
 
197
        g_return_val_if_fail (GIGGLE_IS_REF (ref), NULL);
 
198
 
 
199
        priv = GET_PRIV (ref);
 
200
 
 
201
        return priv->sha;
 
202
}