Changeset 570 for XIOS/trunk/src/node


Ignore:
Timestamp:
03/10/15 10:49:17 (9 years ago)
Author:
mhnguyen
Message:

Correcting a minor bug during merge

Test: NO

File:
1 edited

Legend:

Unmodified
Added
Removed
  • XIOS/trunk/src/node/axis.cpp

    r569 r570  
    7777      else this->ni.setValue(size); 
    7878 
    79               << "One or more attributes among <zoom_begin>, <zoom_end>, <zoom_size> of axis [ id = '" << getId() << "' , context = '" << CObjectFactory::GetCurrentContextId() << "' ] are not well specified"); 
    8079      StdSize true_size = value.numElements(); 
    8180      if (size != true_size) 
     
    121120 
    122121      if ( (zoom_begin < 0) || (zoom_begin > axisSize-1) || (zoom_end<0) || (zoom_end>axisSize-1) || (zoom_size<1) || (zoom_size>axisSize) || (zoom_begin>zoom_end)) 
    123         ERROR("CAxis::checkAttributes(void)",<< "One or more attribut of <zoom_begin>, <zoom_end>, <zoom_size>, are not well specified") ; 
     122        ERROR("CAxis::checkAttributes(void)", 
     123              << "One or more attributes among <zoom_begin>, <zoom_end>, <zoom_size> of axis [ id = '" << getId() << "' , context = '" << CObjectFactory::GetCurrentContextId() << "' ] are not well specified"); 
    124124 
    125125      this->zoom_begin.setValue(zoom_begin) ; 
Note: See TracChangeset for help on using the changeset viewer.