diff options
Diffstat (limited to 'src/gui/widgets')
-rw-r--r-- | src/gui/widgets/browserbox.cpp | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/src/gui/widgets/browserbox.cpp b/src/gui/widgets/browserbox.cpp index 13de696e9..bd565b3d6 100644 --- a/src/gui/widgets/browserbox.cpp +++ b/src/gui/widgets/browserbox.cpp @@ -231,19 +231,7 @@ void BrowserBox::addRow(const std::string &row, const bool atTop) if (mEnableKeys) { - idx1 = tmp.find("###"); - while (idx1 != std::string::npos) - { - const size_t idx2 = tmp.find(';', idx1); - if (idx2 == std::string::npos) - break; - - const std::string str = inputManager.getKeyValueByNameLong( - tmp.substr(idx1 + 3, idx2 - idx1 - 3)); - tmp.replace(idx1, idx2 - idx1 + 1, str); - - idx1 = tmp.find("###"); - } + BrowserBoxTools::replaceKeys(tmp); } idx1 = tmp.find("@@"); |