| 2749 | } |
| 2750 | |
| 2751 | int |
| 2752 | Node::getMinorVersion() const |
| 2753 | { |
| 2754 | ///Thread safe as it never changes |
| 2755 | if (!_imp->plugin) { |
| 2756 | return 0; |
| 2757 | } |
| 2758 | { |
| 2759 | QMutexLocker k(&_imp->pyPluginInfoMutex); |
| 2760 | if ( _imp->pyPlugInfo.isPyPlug ) { |
| 2761 | return 0; |
| 2762 | } |
| 2763 | } |
| 2764 | |
| 2765 | return _imp->plugin->getMinorVersion(); |
| 2766 | } |
| 2767 | |
| 2768 | |
| 2769 |
no outgoing calls
no test coverage detected