X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Ffrontends%2Fqt4%2FGuiErrorList.cpp;h=900fe86018bdedff8355b2ea049f0084cce50525;hb=ee7dd4a11ea21851e7e32164c66b37d3bc8ac31d;hp=17c07673a85223032d1a42b0ec7192a0289048fd;hpb=7d30e34b08827a4fd6449dc12e86dd7eb37ee04e;p=lyx.git diff --git a/src/frontends/qt4/GuiErrorList.cpp b/src/frontends/qt4/GuiErrorList.cpp index 17c07673a8..900fe86018 100644 --- a/src/frontends/qt4/GuiErrorList.cpp +++ b/src/frontends/qt4/GuiErrorList.cpp @@ -108,9 +108,10 @@ void GuiErrorList::paramsToDialog() errorsLW->clear(); descriptionTB->setPlainText(QString()); - ErrorList::const_iterator it = errorList().begin(); - ErrorList::const_iterator end = errorList().end(); - for (; it != end; ++it) + ErrorList const & el = errorList(); + ErrorList::const_iterator it = el.begin(); + ErrorList::const_iterator const en = el.end(); + for (; it != en; ++it) errorsLW->addItem(toqstr(it->error)); errorsLW->setCurrentRow(0); } @@ -165,8 +166,8 @@ bool GuiErrorList::goTo(int item) DocIterator dit = buf_->getParFromID(err.par_id); if (dit == doc_iterator_end(buf_)) { - // FIXME: Happens when loading a read-only doc with - // unknown layout. Should this be the case? + // FIXME: Happens when loading a read-only doc with + // unknown layout. Should this be the case? LYXERR0("par id " << err.par_id << " not found"); return false; } @@ -179,7 +180,8 @@ bool GuiErrorList::goTo(int item) pos_type const range = end - start; dit.pos() = start; BufferView * bv = const_cast(bufferview()); - // FIXME: If we used an LFUN, we would not need this line: + // FIXME LFUN + // If we used an LFUN, we would not need these lines: bv->putSelectionAt(dit, range, false); bv->processUpdateFlags(Update::Force | Update::FitCursor); return true;