| 4859 | } // Node::onRefreshIdentityStateRequestReceived |
| 4860 | |
| 4861 | void |
| 4862 | Node::refreshIdentityState() |
| 4863 | { |
| 4864 | assert( QThread::currentThread() == qApp->thread() ); |
| 4865 | |
| 4866 | if ( !_imp->guiPointer.lock() ) { |
| 4867 | return; |
| 4868 | } |
| 4869 | |
| 4870 | //Post a new request |
| 4871 | ++_imp->refreshIdentityStateRequestsCount; |
| 4872 | Q_EMIT refreshIdentityStateRequested(); |
| 4873 | } |
| 4874 | |
| 4875 | /* |
| 4876 | This is called AFTER the instanceChanged action has been called on the plug-in |
no test coverage detected