Salome HOME
missing French translations
[modules/gui.git] / src / SVTK / SVTK_SetRotationPointDlg.cxx
index 174a6bae0d422fdb83f3867ad3080e5656b67f97..a7aebc3c04d9af261cf84a2fcc6bcc44ea79fa07 100755 (executable)
@@ -1,4 +1,4 @@
-// Copyright (C) 2007-2012  CEA/DEN, EDF R&D, OPEN CASCADE
+// Copyright (C) 2007-2013  CEA/DEN, EDF R&D, OPEN CASCADE
 //
 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
@@ -211,7 +211,7 @@ SVTK_SetRotationPointDlg
                 void* theCallData)
 {
   SVTK_SetRotationPointDlg* self = reinterpret_cast<SVTK_SetRotationPointDlg*>(theClientData);
-  vtkFloatingPointType* aCoord = (vtkFloatingPointType*)theCallData;
+  double* aCoord = (double*)theCallData;
   
   switch ( theEvent ) {
   case SVTK::BBCenterChanged:
@@ -310,7 +310,7 @@ SVTK_SetRotationPointDlg
          &&
          ( myX->hasFocus() || myY->hasFocus() || myZ->hasFocus() ) )
       mySelectPoint->toggle();
-    vtkFloatingPointType aCenter[3] = {myX->text().toDouble(), 
+    double aCenter[3] = {myX->text().toDouble(), 
                                        myY->text().toDouble(), 
                                        myZ->text().toDouble()};
     myMainWindow->activateSetRotationSelected((void*)aCenter);