]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/GuiErrorList.cpp
Whitespace.
[lyx.git] / src / frontends / qt4 / GuiErrorList.cpp
index efc82ba2adb793f6bd07f34f736a571795713899..900fe86018bdedff8355b2ea049f0084cce50525 100644 (file)
@@ -110,8 +110,8 @@ void GuiErrorList::paramsToDialog()
 
        ErrorList const & el = errorList();
        ErrorList::const_iterator it = el.begin();
-       ErrorList::const_iterator end = el.end();
-       for (; it != end; ++it)
+       ErrorList::const_iterator const en = el.end();
+       for (; it != en; ++it)
                errorsLW->addItem(toqstr(it->error));
        errorsLW->setCurrentRow(0);
 }
@@ -166,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;
        }
@@ -180,7 +180,8 @@ bool GuiErrorList::goTo(int item)
        pos_type const range = end - start;
        dit.pos() = start;
        BufferView * bv = const_cast<BufferView *>(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;