~ubuntu-branches/ubuntu/karmic/kdepim/karmic-backports

« back to all changes in this revision

Viewing changes to kmail/kmreaderwin.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Alessandro Ghersi
  • Date: 2009-10-03 22:27:55 UTC
  • mfrom: (1.1.44 upstream)
  • Revision ID: james.westby@ubuntu.com-20091003222755-nm1u1hm80385m8h3
Tags: 4:4.3.2-0ubuntu1
* New upstream release
  - Bump build-deps
  - Remove kubuntu_02_dimap_folder_rename_fix.diff fixed by upstream
  - Remove ktimeticker obsolete package from kontact suggests
  - Remove several oxygen icons which also are in kde-icons-oxygen,
    add in not-installed

Show diffs side-by-side

added added

removed removed

Lines of Context:
2489
2489
//-----------------------------------------------------------------------------
2490
2490
void KMReaderWin::slotScrollPrior()
2491
2491
{
2492
 
  mViewer->view()->scrollBy( 0, -(int)(height() * 0.8 ) );
 
2492
  mViewer->view()->scrollBy( 0, -(int)(mViewer->widget()->height() * 0.8 ) );
2493
2493
}
2494
2494
 
2495
2495
//-----------------------------------------------------------------------------
2496
2496
void KMReaderWin::slotScrollNext()
2497
2497
{
2498
 
  mViewer->view()->scrollBy( 0, (int)(height() * 0.8 ) );
 
2498
  mViewer->view()->scrollBy( 0, (int)(mViewer->widget()->height() * 0.8 ) );
2499
2499
}
2500
2500
 
2501
2501
//-----------------------------------------------------------------------------