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;
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;
*/
// ************** OLD CODE ******************
}
- ::getLine( aStmIn, aTmp );
+ getLine( aStmIn, aTmp );
}
if( aTable2D.Check() ) {
if(MYDEBUG) std::cout << "aTable2D is checked OK " << aTable2D.myTitle << std::endl;
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;
while( !aStmIn.eof() ) {
QString aCell = "";
- if( !(::findNextCell(aStmIn, aTmp, aCell, theSeparator)) ) {
+ if( !( findNextCell(aStmIn, aTmp, aCell, theSeparator)) ) {
return;
}
if( aTmp.size()==0 ) {
}
// clear list of values and read next string
aValList.clear();
- ::getLine( aStmIn, aTmp );
+ getLine( aStmIn, aTmp );
IsFirst = false;
}
else {