Definition at line 143 of file StringSelector.h. References MakeCurrentVisible(), mCurrent, and mStrings. Referenced by KeyboardFunc(). 00144 { 00145 int nIdx = mCurrent + (down ? 1 : -1); 00146 if (nIdx<0 || nIdx>mStrings.size()-1) 00147 return; 00148 mCurrent = nIdx; 00149 if (makeVisible) 00150 MakeCurrentVisible(); 00151 }
Here is the call graph for this function:
|