From 4c6264db7ad4f0ae8a6c001903b47741abb94d8c Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Sun, 29 May 2016 14:55:40 +0300 Subject: Fix code style. --- src/gui/widgets/browserbox.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/gui/widgets/browserbox.cpp') diff --git a/src/gui/widgets/browserbox.cpp b/src/gui/widgets/browserbox.cpp index 97ad5ce85..007f2ce2c 100644 --- a/src/gui/widgets/browserbox.cpp +++ b/src/gui/widgets/browserbox.cpp @@ -211,7 +211,7 @@ void BrowserBox::addRow(const std::string &row, const bool atTop) BrowserLink bLink; // Check for links in format "@@link|Caption@@" - const unsigned int sz = mTextRows.size(); + const uint32_t sz = CAST_U32(mTextRows.size()); if (mEnableKeys) { @@ -386,7 +386,9 @@ void BrowserBox::addRow(const std::string &row, const bool atTop) FOR_EACH (TextRowCIter, i, mTextRows) { std::string tempRow = *i; - for (unsigned int j = 0, sz = tempRow.size(); j < sz; j++) + for (uint32_t j = 0, sz = CAST_U32(tempRow.size()); + j < sz; + j++) { const std::string character = tempRow.substr(j, 1); x += CAST_U32(font->getWidth(character)); -- cgit v1.2.3-70-g09d2