]> Creatis software - cpPlugins.git/blobdiff - lib/cpExtensions/Interaction/SeedWidget.cxx
...
[cpPlugins.git] / lib / cpExtensions / Interaction / SeedWidget.cxx
index 1dcf2233bd28a4a94d3f2efc3270fa9fa9e49049..509d7c2605056e4d64d8843504eeb702688180f3 100644 (file)
@@ -1,6 +1,8 @@
 #include <cpExtensions/Interaction/SeedWidget.h>
 
+#include <vtkCommand.h>
 #include <vtkEvent.h>
+#include <vtkRenderWindowInteractor.h>
 #include <vtkWidgetCallbackMapper.h>
 #include <vtkWidgetEvent.h>
 
@@ -93,6 +95,7 @@ void cpExtensions::Interaction::SeedWidget::
 _CompletedAction( vtkAbstractWidget* wdg )
 {
   // Do nothing
+  Self::CompletedAction( wdg );
 }
 
 // -------------------------------------------------------------------------
@@ -100,6 +103,7 @@ void cpExtensions::Interaction::SeedWidget::
 _MoveAction( vtkAbstractWidget* wdg )
 {
   // Do nothing
+  Self::MoveAction( wdg );
 }
 
 // -------------------------------------------------------------------------
@@ -107,6 +111,7 @@ void cpExtensions::Interaction::SeedWidget::
 _EndSelectAction( vtkAbstractWidget* wdg )
 {
   // Do nothing
+  Self::EndSelectAction( wdg );
 }
 
 // -------------------------------------------------------------------------
@@ -114,6 +119,7 @@ void cpExtensions::Interaction::SeedWidget::
 _DeleteAction( vtkAbstractWidget* wdg )
 {
   // Do nothing
+  Self::DeleteAction( wdg );
 }
 
 // -------------------------------------------------------------------------