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 ++++-- src/gui/widgets/icon.cpp | 2 -- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'src/gui/widgets') 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)); diff --git a/src/gui/widgets/icon.cpp b/src/gui/widgets/icon.cpp index 76d5d90b0..3b9bdeaf8 100644 --- a/src/gui/widgets/icon.cpp +++ b/src/gui/widgets/icon.cpp @@ -30,8 +30,6 @@ #include "resources/loaders/imageloader.h" -#include "resources/resourcemanager/resourcemanager.h" - #include "debug.h" Icon::Icon(const Widget2 *const widget, -- cgit v1.2.3-70-g09d2