Fix minor issues found by EBN

remotes/origin/session-restoration
Yuri Chornoivan 7 years ago
parent b77bcd3078
commit 793d06c95d
  1. 2
      core/area.h
  2. 4
      core/script/event.cpp
  3. 2
      core/script/event_p.h
  4. 2
      core/signatureutils.h

@ -89,7 +89,7 @@ class NormalizedShape;
*
* @par Example: Select Text on a Page using Mouse Events
* @parblock
* The positon of all glyphs and words is stored in normalized coordinates.
* The position of all glyphs and words is stored in normalized coordinates.
* (This is what TextPage actually does.)
* Mouse press and release events are given in page coordinates (400, 180) and (600, 450),
* while the page has a size of 800x600.

@ -61,7 +61,7 @@ QString Event::name() const
case ( FieldFormat ):
return QStringLiteral( "Format" );
case ( FieldKeystroke ):
return QStringLiteral( "Keystroke" );
return QStringLiteral( "Keystroke" );
case ( FieldFocus ):
return QStringLiteral( "Focus" );
case ( FieldValidate ):
@ -264,4 +264,4 @@ std::shared_ptr<Event> Event::createFormValidateEvent( FormField *target,
ret->setReturnCode( true );
}
return ret;
}
}

@ -63,7 +63,7 @@ class Event
FieldMouseEnter, /// < Not implemented.
FieldMouseExit, /// < Not implemented.
FieldMouseUp, /// < Not implemented.
/* Validates the field after every change is commited
/* Validates the field after every change is committed
* (clicked outside or tabbed to another field).
* The enter event is not handled
*/

@ -235,7 +235,7 @@ class OKULARCORE_EXPORT SignatureInfo
virtual QString reason() const;
/**
* The the hash algorithm used for the signature.
* The hash algorithm used for the signature.
*/
virtual HashAlgorithm hashAlgorithm() const;

Loading…
Cancel
Save