| 119 | } |
| 120 | |
| 121 | void CDuiRect::Normalize() |
| 122 | { |
| 123 | if( left > right ) { int iTemp = left; left = right; right = iTemp; } |
| 124 | if( top > bottom ) { int iTemp = top; top = bottom; bottom = iTemp; } |
| 125 | } |
| 126 | |
| 127 | void CDuiRect::Offset(int cx, int cy) |
| 128 | { |
nothing calls this directly
no outgoing calls
no test coverage detected