| 417 | //--------------------------------------------------------------- |
| 418 | |
| 419 | inline void WeakRefBase::clearWeakReferences() |
| 420 | { |
| 421 | if (mReference) |
| 422 | { |
| 423 | mReference->mObject = NULL; |
| 424 | mReference->decRefCount(); |
| 425 | mReference = NULL; |
| 426 | } |
| 427 | } |
| 428 | |
| 429 | inline WeakRefBase::WeakReference * WeakRefBase::getWeakReference() |
| 430 | { |
nothing calls this directly
no test coverage detected