]> git.lyx.org Git - features.git/commitdiff
Comments.
authorRichard Heck <rgheck@comcast.net>
Thu, 14 Oct 2010 15:04:57 +0000 (15:04 +0000)
committerRichard Heck <rgheck@comcast.net>
Thu, 14 Oct 2010 15:04:57 +0000 (15:04 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@35652 a592a061-630c-0410-9148-cb99ea01b6c8

src/frontends/qt4/GuiDocument.cpp
src/frontends/qt4/GuiErrorList.cpp
src/frontends/qt4/GuiSpellchecker.cpp

index db908944e23b53aa9cfe41d1fc83f52037f4068f..fa0f9d7cb7b86a55328b243fd26971558b7e0d2f 100644 (file)
@@ -3311,7 +3311,8 @@ void GuiDocument::dispatchParams()
                        dispatch(FuncRequest(LFUN_SET_COLOR, str));
                }
        }
-       // FIXME: If we used an LFUN, we would not need those two lines:
+       // FIXME LFUN
+       // If we used an LFUN, we would not need these two lines:
        BufferView * bv = const_cast<BufferView *>(bufferview());
        bv->processUpdateFlags(Update::Force | Update::FitCursor);
 }
index 2038500b477f88efb443a2c5023c6504e54a54fc..d359adc89fb2f7c3df89a0c9c02338d5e6e7d2ed 100644 (file)
@@ -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 these lines:
+       // 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;
index cfb9f6812a68e284db0d6b0825388e78e5eaac43..8714aa4c3fe1e98d4c1b78133b06d9e324ee7a54 100644 (file)
@@ -324,8 +324,8 @@ void GuiSpellchecker::check()
        if (pos != -1)
                d->ui.languageCO->setCurrentIndex(pos);
 
-       // FIXME: if we used a lfun like in find/replace, dispatch would do
-       // all of this for us
+       // FIXME LFUN
+       // If we used a LFUN, dispatch would do all of this for us
        int const size = to.pos() - from.pos();
        BufferView * bv = const_cast<BufferView *>(bufferview());
        bv->putSelectionAt(from, size, false);