]> SALOME platform Git repositories - modules/visu.git/commitdiff
Salome HOME
Windows compatibility V5_1_main_20100324 V5_1_main_20100325
authorana <ana@opencascade.com>
Tue, 23 Mar 2010 13:28:32 +0000 (13:28 +0000)
committerana <ana@opencascade.com>
Tue, 23 Mar 2010 13:28:32 +0000 (13:28 +0000)
src/CONVERTOR/VISU_TableReader.cxx

index 50d21b1b91a3ca0a63125064ba2da6189dc9e05c..19f582ea9c8a65bde28437f9bb617e0eebe5f7a8 100644 (file)
@@ -159,7 +159,7 @@ namespace
           while( !aStmIn.eof() ) {
             aCell.push_back(aTmp);
             aCell.push_back('\n');
-            ::getLine( aStmIn, aTmp );
+            getLine( aStmIn, aTmp );
             tmpind = aTmp.indexOf('"',1);
             if( tmpind >= 0 ) {
               break;
@@ -240,7 +240,7 @@ VISU::ImportTables( const char* theFileName, TTableContainer& theContainer,
   QString aTmp;
   do {
     // find beginning of table (tables are separated by empty lines)
-    while( ::getLine( aStmIn, aTmp ) && aTmp.trimmed() == "");
+    while( getLine( aStmIn, aTmp ) && aTmp.trimmed() == "" );
 
     PTableIDMapper aTableIDMapper( new TTableIDMapper() );
     TTable2D& aTable2D = *aTableIDMapper;
@@ -359,7 +359,7 @@ VISU::ImportTables( const char* theFileName, TTableContainer& theContainer,
         */
         // ************** OLD CODE ******************
       }
-      ::getLine( aStmIn, aTmp );
+      getLine( aStmIn, aTmp );
     }
     if( aTable2D.Check() ) {
       if(MYDEBUG) std::cout << "aTable2D is checked OK " << aTable2D.myTitle << std::endl;
@@ -387,7 +387,7 @@ void VISU::ImportCSVTable(const char* theFileName, TTableContainer& theContainer
   QString aTmp;
   do {
     // find beginning of table (tables are separated by empty lines)
-    while( ::getLine( aStmIn, aTmp ) && aTmp.trimmed() == "");
+    while( getLine( aStmIn, aTmp ) && aTmp.trimmed() == "" );
 
     PTableIDMapper aTableIDMapper( new TTableIDMapper() );
     TTable2D& aTable2D = *aTableIDMapper;
@@ -398,7 +398,7 @@ void VISU::ImportCSVTable(const char* theFileName, TTableContainer& theContainer
 
     while( !aStmIn.eof() ) {
       QString aCell = "";
-      if( !(::findNextCell(aStmIn, aTmp, aCell, theSeparator)) ) {
+      if( !( findNextCell(aStmIn, aTmp, aCell, theSeparator)) ) {
         return;
       }
       if( aTmp.size()==0 ) {
@@ -426,7 +426,7 @@ void VISU::ImportCSVTable(const char* theFileName, TTableContainer& theContainer
         }
         // clear list of values and read next string
         aValList.clear();
-        ::getLine( aStmIn, aTmp );
+        getLine( aStmIn, aTmp );
         IsFirst = false;
       }
       else {