| 1534 | } |
| 1535 | |
| 1536 | void Settings::setValue(const QString & key, const QVariant & value) |
| 1537 | { |
| 1538 | DEBUG_MID_LEVEL << Q_FUNC_INFO << key; |
| 1539 | |
| 1540 | QMutexLocker locker(&m_mutex); |
| 1541 | |
| 1542 | if (m_currentProfile == NULL) |
| 1543 | { |
| 1544 | qWarning() << Q_FUNC_INFO << "m_currentProfile == NULL"; |
| 1545 | return; |
| 1546 | } |
| 1547 | m_currentProfile->setValue(key, value); |
| 1548 | } |
| 1549 | |
| 1550 | QVariant Settings::value(const QString & key) |
| 1551 | { |
no outgoing calls
no test coverage detected