| 58 | } |
| 59 | |
| 60 | bool GM_JSObject::deleteValue(const QString &nspace, const QString &name) |
| 61 | { |
| 62 | QString valueName = QSL("GreaseMonkey-%1/%2").arg(nspace, name); |
| 63 | m_settings->remove(valueName); |
| 64 | return true; |
| 65 | } |
| 66 | |
| 67 | QStringList GM_JSObject::listValues(const QString &nspace) |
| 68 | { |
no test coverage detected