~ubuntu-branches/ubuntu/trusty/muse/trusty

« back to all changes in this revision

Viewing changes to muse/widgets/view.cpp

  • Committer: Package Import Robot
  • Author(s): Alessio Treglia
  • Date: 2013-08-28 16:25:57 UTC
  • mfrom: (1.1.16)
  • Revision ID: package-import@ubuntu.com-20130828162557-27ulrksfvm64td50
Tags: 2.1.2-1
* New upstream bugfix release.
* Refresh patches.
* Fix doc links.

Show diffs side-by-side

added added

removed removed

Lines of Context:
420
420
      }
421
421
 
422
422
//---------------------------------------------------------
 
423
//   keyReleaseEvent
 
424
//---------------------------------------------------------
 
425
 
 
426
void View::keyReleaseEvent(QKeyEvent* event)
 
427
      {
 
428
      viewKeyReleaseEvent(event);
 
429
      }
 
430
 
 
431
//---------------------------------------------------------
423
432
//   viewKeyPressEvent
424
433
//---------------------------------------------------------
425
434
 
429
438
      }
430
439
 
431
440
//---------------------------------------------------------
 
441
//   viewKeyReleaseEvent
 
442
//---------------------------------------------------------
 
443
 
 
444
void View::viewKeyReleaseEvent(QKeyEvent* event)
 
445
      {
 
446
      event->ignore();
 
447
      }
 
448
 
 
449
//---------------------------------------------------------
432
450
//   mousePressEvent
433
451
//---------------------------------------------------------
434
452