~ubuntu-branches/debian/jessie/qpdfview/jessie

« back to all changes in this revision

Viewing changes to sources/miscellaneous.cpp

  • Committer: Package Import Robot
  • Author(s): Benjamin Eltzner
  • Date: 2013-07-30 00:00:25 UTC
  • mfrom: (1.2.9)
  • Revision ID: package-import@ubuntu.com-20130730000025-lsj8rjj0brpaj5ve
Tags: 0.4.4-1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
    painter->save();
35
35
 
36
36
    painter->setCompositionMode(m_compositionMode);
37
 
 
38
37
    drawSource(painter);
39
38
 
40
39
    painter->restore();
224
223
    QPainter painter(this);
225
224
 
226
225
    painter.setCompositionMode(QPainter::CompositionMode_Multiply);
227
 
 
228
226
    painter.fillRect(x(), y(), m_progress * width() / 100, height(), palette().highlight());
229
227
}
230
228