Salome HOME
refs #416: to store the open state of object browser items in the binary array
[modules/gui.git] / src / SVTK / SVTK_ViewParameterDlg.cxx
index c0a7091b4eeb3f622c0d64dcc7b8590394d3ad73..bcbc8eed8ec2ce6fff82724037465476ace4c64d 100755 (executable)
@@ -1,9 +1,9 @@
-// Copyright (C) 2007-2012  CEA/DEN, EDF R&D, OPEN CASCADE
+// Copyright (C) 2007-2014  CEA/DEN, EDF R&D, OPEN CASCADE
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Lesser General Public
 // License as published by the Free Software Foundation; either
-// version 2.1 of the License.
+// version 2.1 of the License, or (at your option) any later version.
 //
 // This library is distributed in the hope that it will be useful,
 // but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -414,12 +414,12 @@ void SVTK_ViewParameterDlg::ProcessEvents(vtkObject* vtkNotUsed(theObject),
                                           void* theCallData)
 {
   SVTK_ViewParameterDlg* self = reinterpret_cast<SVTK_ViewParameterDlg*>(theClientData);
-  vtkFloatingPointType* aCoord;
+  double* aCoord;
   switch ( theEvent ) {
   case SVTK::FocalPointChanged:
     if ( theCallData )
     {
-      aCoord = (vtkFloatingPointType*)theCallData;
+      aCoord = (double*)theCallData;
       self->myBusy = true;
       self->myFocalX->setText( QString::number(aCoord[0]) );
       self->myFocalY->setText( QString::number(aCoord[1]) );