diff --git a/Modules/Core/src/Interactions/mitkVtkInteractorStyle.cxx b/Modules/Core/src/Interactions/mitkVtkInteractorStyle.cxx index 54b37d3781..33a55168b1 100644 --- a/Modules/Core/src/Interactions/mitkVtkInteractorStyle.cxx +++ b/Modules/Core/src/Interactions/mitkVtkInteractorStyle.cxx @@ -1,42 +1,42 @@ /*============================================================================ The Medical Imaging Interaction Toolkit (MITK) Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. Use of this source code is governed by a 3-clause BSD license that can be found in the LICENSE file. ============================================================================*/ #include #include #include vtkStandardNewMacro(mitk::VtkInteractorStyle); -mitk::VtkInteractorStyle::mitkVtkInteractorStyle() : vtkInteractorStyleUser() +mitk::VtkInteractorStyle::VtkInteractorStyle() : vtkInteractorStyleUser() { } -mitk::VtkInteractorStyle::~mitkVtkInteractorStyle() +mitk::VtkInteractorStyle::~VtkInteractorStyle() { } void mitk::VtkInteractorStyle::OnMouseWheelForward() { if (this->HasObserver(vtkCommand::MouseWheelForwardEvent)) { this->InvokeEvent(vtkCommand::MouseWheelForwardEvent, nullptr); } } void mitk::VtkInteractorStyle::OnMouseWheelBackward() { if (this->HasObserver(vtkCommand::MouseWheelBackwardEvent)) { this->InvokeEvent(vtkCommand::MouseWheelBackwardEvent, nullptr); } }