| 1249 | } |
| 1250 | |
| 1251 | SigDigger::TabWidgetFactory * |
| 1252 | Singleton::findTabWidgetFactory(QString const &name) const |
| 1253 | { |
| 1254 | if (!this->tabWidgetFactoryTable.contains(name)) |
| 1255 | return nullptr; |
| 1256 | |
| 1257 | return this->tabWidgetFactoryTable[name]; |
| 1258 | } |
| 1259 | |
| 1260 | QList<SigDigger::TabWidgetFactory *>::const_iterator |
| 1261 | Singleton::getFirstTabWidgetFactory() const |
nothing calls this directly
no outgoing calls
no test coverage detected