| 400 | } |
| 401 | |
| 402 | std::string AppConfig::GetProtocolFormat(const std::string &protocolName) |
| 403 | { |
| 404 | for (StringPair &o : appOptions.m_protocolFormats){ |
| 405 | if (o.m_key == protocolName){ |
| 406 | return o.m_value; |
| 407 | } |
| 408 | } |
| 409 | return ""; |
| 410 | } |
| 411 | |
| 412 | void AppConfig::GetFontSizeRange(float *minSize, float *maxSize) |
| 413 | { |