~ubuntu-branches/debian/squeeze/tasks/squeeze

« back to all changes in this revision

Viewing changes to libkoto/koto-meta-group.c

  • Committer: Bazaar Package Importer
  • Author(s): Ross Burton, Ross Burton, Loïc Minier, Emilio Pozuelo Monfort
  • Date: 2009-08-10 10:08:52 UTC
  • mfrom: (1.1.11 upstream)
  • Revision ID: james.westby@ubuntu.com-20090810100852-6gp4pydhwflg4vnb
Tags: 0.16-1
[ Ross Burton ]
* New upstream release (Closes: #539510)
* Fix debug package section and depends
* Bump Standards

[ Loïc Minier ]
* Set LDFLAGS directly; bump cdbs bdep to >= 0.4.41.
* Create tasks.pot during build: Add a common-build-arch:: snippet to call
  langpack.mk's langpack-mk-update-pot target with
  DEB_BUILDDIR=$(DEB_SRCDIR); intltool-update can't be called in builddir as
  it needs POTFILES.in and even with it wont lookup files listed there in
  srcdir; add a clean:: snippet to remove the pot file; LP: #188690.

[ Emilio Pozuelo Monfort ]
* Wrap build-deps and deps.

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
  KotoMetaGroupPrivate *priv;
37
37
 
38
38
  g_return_val_if_fail (KOTO_IS_META_GROUP (group), NULL);
39
 
  
 
39
 
40
40
  priv = GET_PRIVATE (group);
41
41
 
42
42
  switch (priv->kind) {
65
65
  KotoGroupClass *group_class = KOTO_GROUP_CLASS (klass);
66
66
 
67
67
  g_type_class_add_private (klass, sizeof (KotoMetaGroupPrivate));
68
 
  
 
68
 
69
69
  group_class->get_name = get_name;
70
70
  group_class->get_weight = get_weight;
71
71
}