~ubuntu-branches/ubuntu/saucy/digikam/saucy

« back to all changes in this revision

Viewing changes to libs/themeengine/texture.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Christian Mangold
  • Date: 2010-04-09 21:30:01 UTC
  • mfrom: (1.2.28 upstream)
  • Revision ID: james.westby@ubuntu.com-20100409213001-4bfyibrd359rn7o3
Tags: 2:1.2.0-0ubuntu1
* New upstream release (LP: #560576)
* Remove all patches, fixed upstream
  - Remove quilt build-depend

Show diffs side-by-side

added added

removed removed

Lines of Context:
213
213
 
214
214
    for (x = 0; x < d->width; ++x)
215
215
    {
216
 
        *(pr++) = (unsigned char) (xr);
217
 
        *(pg++) = (unsigned char) (xg);
218
 
        *(pb++) = (unsigned char) (xb);
 
216
        *(pr++) = (unsigned char) (xr); // krazy:exclude=postfixop
 
217
        *(pg++) = (unsigned char) (xg); // krazy:exclude=postfixop
 
218
        *(pb++) = (unsigned char) (xb); // krazy:exclude=postfixop
219
219
 
220
220
        xr += drx;
221
221
        xg += dgx;