From a65c9ec055e51bdff5e10334c9e692411e69fb3e Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Tue, 27 Mar 2012 01:40:56 +0300 Subject: Fix chat item links. Some times links worked incorrectly. --- src/gui/widgets/browserbox.cpp | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) (limited to 'src/gui/widgets/browserbox.cpp') diff --git a/src/gui/widgets/browserbox.cpp b/src/gui/widgets/browserbox.cpp index d5b088369..8e8d4f2c2 100644 --- a/src/gui/widgets/browserbox.cpp +++ b/src/gui/widgets/browserbox.cpp @@ -175,13 +175,17 @@ void BrowserBox::addRow(const std::string &row, bool atTop) while (mTextRows.size() > mMaxRows) { mTextRows.pop_front(); - for (unsigned int i = 0; i < mLinks.size(); i++) + LinkIterator it = mLinks.begin(); + LinkIterator it_end = mLinks.end(); + while (it != it_end) { - mLinks[i].y1 -= font->getHeight(); - mLinks[i].y2 -= font->getHeight(); + (*it).y1 -= font->getHeight(); + (*it).y2 -= font->getHeight(); - if (mLinks[i].y1 < 0) - mLinks.erase(mLinks.begin() + i); + if ((*it).y1 < 0) + it = mLinks.erase(it); + else + ++ it; } } } -- cgit v1.2.3-60-g2f50