| 100 | } |
| 101 | |
| 102 | BOOL CConnectLayer::cbLayerClose(void *userContext) |
| 103 | { |
| 104 | qDebug(log) << Q_FUNC_INFO; |
| 105 | if(!userContext) return FALSE; |
| 106 | CConnectLayer* pThis = ((LayerUserData*)userContext)->pThis; |
| 107 | return pThis->OnLayerClose(); |
| 108 | } |
| 109 | |
| 110 | BOOL CConnectLayer::OnLayerClose() |
| 111 | { |
nothing calls this directly
no test coverage detected