Home || Visual Search || Applications || Architecture || Important Messages || OGL || Src

void Impala::Visualization::ShowNextFromControl::Clamp ( int &  ref,
int  minVal,
int  maxVal 
) [inline]

Definition at line 69 of file ShowNextFromControl.h.

Referenced by UpdateShowNrText(), and UpdateStartValText().

00070     {
00071         if (ref < minVal) ref = minVal;
00072         if (ref > maxVal) ref = maxVal;
00073     }


Generated on Thu Jan 13 09:25:05 2011 for ImpalaSrc by  doxygen 1.5.1