Skip to content
This repository has been archived by the owner on Apr 16, 2022. It is now read-only.

Commit

Permalink
Add override modifier
Browse files Browse the repository at this point in the history
  • Loading branch information
natmark committed Oct 27, 2018
1 parent a2618f1 commit e37f00d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -96,10 +96,10 @@ extension ProcessingView {
@objc func didRotate(recognizer: NSRotationGestureRecognizer) {
self.gestureModel.didRotate(recognizer: recognizer)
}
open func scrollWheel(with event: NSEvent) {
open override func scrollWheel(with event: NSEvent) {
self.gestureModel.scrollWheel(with: event)
}
open func mouseMoved(with event: NSEvent) {
open override func mouseMoved(with event: NSEvent) {
self.gestureModel.mouseMoved(with: event)
}
#endif
Expand Down

0 comments on commit e37f00d

Please sign in to comment.