diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-09-27 02:19:48 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-09-27 02:19:48 +0300 |
commit | adef0b3f863300d29f6fea9a4c6318203f8393ed (patch) | |
tree | 6a5a4f5363c77708be4d4d9ee1e361054887cf0a /src | |
parent | 6dd07b6697176da72ac8607897fca320d77142fd (diff) | |
download | plus-adef0b3f863300d29f6fea9a4c6318203f8393ed.tar.gz plus-adef0b3f863300d29f6fea9a4c6318203f8393ed.tar.bz2 plus-adef0b3f863300d29f6fea9a4c6318203f8393ed.tar.xz plus-adef0b3f863300d29f6fea9a4c6318203f8393ed.zip |
Fix too long string in browserbox.cpp
Diffstat (limited to 'src')
-rw-r--r-- | src/gui/widgets/browserbox.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gui/widgets/browserbox.cpp b/src/gui/widgets/browserbox.cpp index 94758e78f..20fc6c81c 100644 --- a/src/gui/widgets/browserbox.cpp +++ b/src/gui/widgets/browserbox.cpp @@ -297,7 +297,8 @@ void BrowserBox::addRow(const std::string &row, const bool atTop) if (id) { std::vector<int> parts; - splitToIntVector(parts, bLink.link.substr(idx), ','); + splitToIntVector(parts, + bLink.link.substr(idx), ','); while (parts.size() < maxCards) parts.push_back(0); const ItemColor itemColor = |