Get the proxy password
| 1104 | |
| 1105 | // Get the proxy password |
| 1106 | QString Global::getProxyPassword() { |
| 1107 | settings->beginGroup("Proxy"); |
| 1108 | QString value = settings->value("password", "").toString(); |
| 1109 | settings->endGroup(); |
| 1110 | return value; |
| 1111 | } |
| 1112 | |
| 1113 | // Get the proxy userid |
| 1114 | QString Global::getProxyUserid() { |
no test coverage detected