| 124 | } |
| 125 | |
| 126 | bool StateBasePlugin::checkStringMask( const std::string& mask ) const |
| 127 | { |
| 128 | return ( findSubstringCaseInsensitive( name(), mask) != std::string::npos ) || |
| 129 | ( findSubstringCaseInsensitive( getTooltip(), mask ) != std::string::npos ); |
| 130 | } |
| 131 | |
| 132 | bool StateBasePlugin::ImGuiBeginWindow_( ImGui::CustomStatePluginWindowParameters params ) |
| 133 | { |
nothing calls this directly
no test coverage detected