diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-06-22 19:33:02 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-06-22 19:33:02 +0300 |
commit | aabe1258a8d7c9640b594069ba04ace8ab0d640f (patch) | |
tree | f6f243a14fc92ed972f706e04ec9cb9b476e8b8a /src/gui | |
parent | 4de30ff5f24bc47e2fe95aed296206687ecfd829 (diff) | |
download | plus-aabe1258a8d7c9640b594069ba04ace8ab0d640f.tar.gz plus-aabe1258a8d7c9640b594069ba04ace8ab0d640f.tar.bz2 plus-aabe1258a8d7c9640b594069ba04ace8ab0d640f.tar.xz plus-aabe1258a8d7c9640b594069ba04ace8ab0d640f.zip |
Remove unused code from staticbrowserbox.
Diffstat (limited to 'src/gui')
-rw-r--r-- | src/gui/widgets/staticbrowserbox.cpp | 21 |
1 files changed, 4 insertions, 17 deletions
diff --git a/src/gui/widgets/staticbrowserbox.cpp b/src/gui/widgets/staticbrowserbox.cpp index 7a64dd060..6cfbff014 100644 --- a/src/gui/widgets/staticbrowserbox.cpp +++ b/src/gui/widgets/staticbrowserbox.cpp @@ -429,16 +429,14 @@ void StaticBrowserBox::safeDraw(Graphics *const graphics) int StaticBrowserBox::calcHeight() { unsigned int y = CAST_U32(mPadding); - int wrappedLines = 0; int moreHeight = 0; int maxWidth = mDimension.width - mPadding; - int link = 0; - bool bold = false; - unsigned int wWidth = CAST_U32(maxWidth); - if (maxWidth < 0) return 1; + int link = 0; + bool bold = false; + const unsigned int wWidth = CAST_U32(maxWidth); const Font *const font = getFont(); const int fontHeight = font->getHeight() + 2 * mItemPadding; const int fontWidthMinus = font->getWidth("-"); @@ -451,7 +449,6 @@ int StaticBrowserBox::calcHeight() { unsigned int x = CAST_U32(mPadding); const std::string row = *(i); - bool wrapped = false; int objects = 0; // Check for separator lines @@ -496,20 +493,10 @@ int StaticBrowserBox::calcHeight() prevColor[1] = selColor[1]; bold = false; - const int xPadding = CAST_S32(mNewLinePadding) + mPadding; - for (size_t start = 0, end = std::string::npos; start != std::string::npos; start = end, end = std::string::npos) { - // Wrapped line continuation shall be indented - if (wrapped) - { - y += CAST_U32(fontHeight); - x = CAST_U32(xPadding); - wrapped = false; - } - size_t idx1 = end; size_t idx2 = end; @@ -711,7 +698,7 @@ int StaticBrowserBox::calcHeight() if (CAST_S32(wWidth) != maxWidth) setWidth(maxWidth); - return (CAST_S32(mTextRows.size()) + wrappedLines) + return CAST_S32(mTextRows.size()) * fontHeight + moreHeight + 2 * mPadding; } |