diff options
-rw-r--r-- | src/gui/widgets/browserbox.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/widgets/browserbox.cpp b/src/gui/widgets/browserbox.cpp index 190e79e10..907a45a33 100644 --- a/src/gui/widgets/browserbox.cpp +++ b/src/gui/widgets/browserbox.cpp @@ -239,7 +239,7 @@ void BrowserBox::addRow(const std::string &row, const bool atTop) if (idx2 == std::string::npos) break; - const int newSize = atoi(newRow.substr( + const unsigned int newSize = atoi(newRow.substr( idx1 + 2, idx2 - idx1 - 2).c_str()); std::string str = newRow.substr(0, idx1); while (str.size() < newSize) |