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

« back to all changes in this revision

Viewing changes to pango/pangomm/glyphstring.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:
170
170
 
171
171
void GlyphString::set_size(int new_len)
172
172
{
173
 
pango_glyph_string_set_size(gobj(), new_len); 
 
173
  pango_glyph_string_set_size(gobj(), new_len);
174
174
}
175
175
 
176
176
void GlyphString::get_extents(const Glib::RefPtr<const Font>& font, Rectangle& ink_rect, Rectangle& logical_rect) const
177
177
{
178
 
pango_glyph_string_extents(const_cast<PangoGlyphString*>(gobj()), const_cast<PangoFont*>(Glib::unwrap<Font>(font)), (ink_rect).gobj(), (logical_rect).gobj()); 
 
178
  pango_glyph_string_extents(const_cast<PangoGlyphString*>(gobj()), const_cast<PangoFont*>(Glib::unwrap<Font>(font)), (ink_rect).gobj(), (logical_rect).gobj());
179
179
}
180
180
 
181
181
void GlyphString::get_extents(int start, int end, const Glib::RefPtr<const Font>& font, Rectangle& ink_rect, Rectangle& logical_rect) const
182
182
{
183
 
pango_glyph_string_extents_range(const_cast<PangoGlyphString*>(gobj()), start, end, const_cast<PangoFont*>(Glib::unwrap<Font>(font)), (ink_rect).gobj(), (logical_rect).gobj()); 
 
183
  pango_glyph_string_extents_range(const_cast<PangoGlyphString*>(gobj()), start, end, const_cast<PangoFont*>(Glib::unwrap<Font>(font)), (ink_rect).gobj(), (logical_rect).gobj());
184
184
}
185
185
 
186
186
int GlyphString::get_width() const