~ubuntu-branches/ubuntu/trusty/pango1.0/trusty-proposed

« back to all changes in this revision

Viewing changes to pango-view/viewer-pangoft2.c

  • Committer: Package Import Robot
  • Author(s): Michael Biebl
  • Date: 2012-03-09 10:39:11 UTC
  • mfrom: (1.6.4) (63.3.30 sid)
  • Revision ID: package-import@ubuntu.com-20120309103911-0jpxqwnix351v3se
Tags: 1.29.5-1
* New upstream release.
  - Fix GI annotation syntax. Closes: #640855
* debian/control.in: Bump Build-Depends on libglib2.0-dev to (>= 2.31.0).
* debian/patches/00git_transfer_annotations.patch: Removed, merged upstream.
* Set pkg-gnome-maintainers@lists.alioth.debian.org as Maintainer.

Show diffs side-by-side

added added

removed removed

Lines of Context:
133
133
                     int      width,
134
134
                     int      height)
135
135
{
136
 
  int row, bytes;
 
136
  int row;
137
137
  FT_Bitmap *bitmap = (FT_Bitmap *) surface;
138
138
 
139
139
  /* Write it as pgm to output */
142
142
          "%d %d\n"
143
143
          "255\n", width, height);
144
144
  for (row = 0; row < height; row++)
145
 
    bytes = fwrite(bitmap->buffer + row * bitmap->pitch, 1, width, stream);
 
145
    fwrite (bitmap->buffer + row * bitmap->pitch, 1, width, stream);
146
146
}
147
147
 
148
148
const PangoViewer pangoft2_viewer = {