From b43451daa5dc7b2e352d084d45934cf71db7ae4f Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Wed, 7 May 2014 17:54:05 +0300 Subject: Add missing const. --- src/gui/widgets/scrollarea.cpp | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) (limited to 'src/gui/widgets/scrollarea.cpp') diff --git a/src/gui/widgets/scrollarea.cpp b/src/gui/widgets/scrollarea.cpp index 8761e3f7d..e006302c7 100644 --- a/src/gui/widgets/scrollarea.cpp +++ b/src/gui/widgets/scrollarea.cpp @@ -254,16 +254,13 @@ void ScrollArea::logic() Widget *const content = getContent(); if (content) { - const int frameSize = content->getFrameSize(); + unsigned int frameSize = content->getFrameSize(); content->setPosition(-mHScroll + frameSize, -mVScroll + frameSize); content->logic(); - } - // When no scrollbar in a certain direction, adapt content size to match - // the content dimension exactly. - if (content) - { - const unsigned int frameSize = 2 * content->getFrameSize(); + // When no scrollbar in a certain direction, + // adapt content size to match the content dimension exactly. + frameSize = 2 * content->getFrameSize(); if (mHPolicy == ScrollArea::SHOW_NEVER) { content->setWidth((mVBarVisible ? (mDimension.width -- cgit v1.2.3-70-g09d2