| 1308 | } |
| 1309 | |
| 1310 | void PluginManagerPrivate::initProfiling() |
| 1311 | { |
| 1312 | if (m_profileTimer.isNull()) { |
| 1313 | m_profileTimer.reset(new QTime); |
| 1314 | m_profileTimer->start(); |
| 1315 | m_profileElapsedMS = 0; |
| 1316 | qDebug("Profiling started"); |
| 1317 | } else { |
| 1318 | m_profilingVerbosity++; |
| 1319 | } |
| 1320 | } |
| 1321 | |
| 1322 | void PluginManagerPrivate::profilingReport(const char *what, const PluginSpec *spec /* = 0 */) |
| 1323 | { |
no test coverage detected