~ubuntu-branches/ubuntu/vivid/pangomm/vivid

« back to all changes in this revision

Viewing changes to pango/pangomm/coverage.cc

  • Committer: Package Import Robot
  • Author(s): Michael Biebl
  • Date: 2013-06-27 03:45:34 UTC
  • mfrom: (1.2.7)
  • Revision ID: package-import@ubuntu.com-20130627034534-ran33b0p8ffl2j25
Tags: 2.34.0-1
* New upstream release.
* Bump required version of libglibmm-2.4-dev to (>= 2.36.0).
* Drop obsolete DM-Upload-Allowed field.
* Update Vcs-* URLs.
* Update debian/copyright, use final copyright-format 1.0 spec.
* Bump Standards-Version to 3.9.4. No further changes.
* Add Build-Depends on autotools-dev as lintian was complaining about
  outdated config.{guess,sub}.
* Drop obsolete Conflicts/Replaces.
* Convert to multiarch.
* Bump debhelper compatibility level to 9.

Show diffs side-by-side

added added

removed removed

Lines of Context:
141
141
 
142
142
void Coverage::set(int index, CoverageLevel level)
143
143
{
144
 
pango_coverage_set(gobj(), index, ((PangoCoverageLevel)(level))); 
 
144
  pango_coverage_set(gobj(), index, ((PangoCoverageLevel)(level)));
145
145
}
146
146
 
147
147
void Coverage::max(const Glib::RefPtr<Coverage>& other) const
148
148
{
149
 
pango_coverage_max(const_cast<PangoCoverage*>(gobj()), Glib::unwrap(other)); 
 
149
  pango_coverage_max(const_cast<PangoCoverage*>(gobj()), Glib::unwrap(other));
150
150
}
151
151
 
152
152