| 7 | } |
| 8 | |
| 9 | void CNodeFloat::Update( const PHOTSPOT Spot ) |
| 10 | { |
| 11 | float FloatValue; |
| 12 | |
| 13 | StandardUpdate( Spot ); |
| 14 | |
| 15 | FloatValue = (float)_ttof( Spot->Text.GetString( ) ); |
| 16 | if (Spot->Id == HS_EDIT) |
| 17 | ReClassWriteMemory( (LPVOID)Spot->Address, &FloatValue, sizeof( float ) ); |
| 18 | } |
| 19 | |
| 20 | NODESIZE CNodeFloat::Draw( const PVIEWINFO View, int x, int y ) |
| 21 | { |
nothing calls this directly
no test coverage detected