]> SALOME platform Git repositories - modules/superv.git/commitdiff
Salome HOME
PR: g++ 3.2 port
authorprascle <prascle>
Thu, 12 Jun 2003 10:43:38 +0000 (10:43 +0000)
committerprascle <prascle>
Thu, 12 Jun 2003 10:43:38 +0000 (10:43 +0000)
src/SUPERVGUI/SUPERVGUI_BrowseNodeDlg.h
src/SUPERVGUI/SUPERVGUI_Link.cxx
src/SUPERVGUI/SUPERVGUI_Link.h

index e9389341b3b1534c14416a28c679128e19727d3c..c09cb59ce1cb223bd03d6ce89587368f52ebc148 100644 (file)
@@ -9,6 +9,7 @@
 #ifndef SUPERVGUI_BrowseNodeDlg_H
 #define SUPERVGUI_BrowseNodeDlg_H
 
+using namespace std;
 #include <qdialog.h>
 #include "SUPERVGUI_Def.h"
 #include "SUPERVGUI_Port.h"
index 0cec3ffe095ed4274cbbd90293f785e549f7ac78..c60c3550ae591b4b55ff8cbd4ba9cea9a9b659ff 100644 (file)
@@ -730,7 +730,7 @@ int distance(int x1, int y1, int x2, int y2) {
   x = x * x;
   int y = y2 - y1;
   y = y * y;
-  return (int) sqrt(x + y);
+  return (int) sqrt(double(x + y));
 }
 
 
@@ -755,19 +755,19 @@ int distance(QPoint thePnt, QPoint thePntLn1, QPoint thePntLn2) {
   r = r * r;
   s = py - ly;
   s = s * s;
-  a = (int) sqrt(r + s);
+  a = (int) sqrt(double(r + s));
 
   r = px - nx;
   r = r * r;
   s = py - ny;
   s = s * s;
-  b = (int) sqrt(r + s);
+  b = (int) sqrt(double(r + s));
   
   r = nx - lx;
   r = r * r;
   s = ny - ly;
   s = s * s;
-  c = (int) sqrt(r + s);
+  c = (int) sqrt(double(r + s));
 
   return (a+b-c);
 }
index fe79288bf8ed6b3edda6859ae3d5d2c96acb45a2..f9604ab213874b07144b93078b2f7eca0599f990 100644 (file)
@@ -8,6 +8,7 @@
 #ifndef SUPERVGUI_Link_H
 #define SUPERVGUI_Link_H
 
+using namespace std;
 #include "SUPERVGUI_Def.h"
 #include "SUPERVGUI_Port.h"
 #include <qvaluevector.h>