-------------------------------------------------------------------------------------- Description: Applies the cursor to the mouse pointer. --------------------------------------------------------------------------------------
| 436 | // Applies the cursor to the mouse pointer. |
| 437 | // -------------------------------------------------------------------------------------- |
| 438 | void Tr2MouseCursor::Apply() |
| 439 | { |
| 440 | if( !IsValid() ) |
| 441 | { |
| 442 | return; |
| 443 | } |
| 444 | #if defined( _WIN32 ) |
| 445 | SetCursor( m_cursor ); |
| 446 | #elif __APPLE__ |
| 447 | Apply_MacOS(); |
| 448 | #endif |
| 449 | } |
no test coverage detected