| 541 | } |
| 542 | |
| 543 | void TextEntry::GetRange(float& min, float& max) |
| 544 | { |
| 545 | if (mType == kTextEntry_Int) |
| 546 | { |
| 547 | min = mIntMin; |
| 548 | max = mIntMax; |
| 549 | } |
| 550 | else if (mType == kTextEntry_Float) |
| 551 | { |
| 552 | min = mFloatMin; |
| 553 | max = mFloatMax; |
| 554 | } |
| 555 | else |
| 556 | { |
| 557 | min = 0; |
| 558 | max = 1; |
| 559 | } |
| 560 | } |
| 561 | |
| 562 | void TextEntry::SetValue(float value, double time, bool forceUpdate /*= false*/) |
| 563 | { |
no outgoing calls
no test coverage detected