]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/GuiSpellchecker.cpp
Properly track the lifetime of signals2::slots (#8261)
[lyx.git] / src / frontends / qt4 / GuiSpellchecker.cpp
index aa62a9a448ccd7ead8149f010b58cf018c50b69e..cbdf4f4893b9947eb427e93846869ed4d017c2f4 100644 (file)
@@ -337,16 +337,16 @@ void SpellcheckerWidget::Private::setSelection(
                Cursor & bvcur = bv->cursor();
                bvcur.setCursor(from);
                bvcur.clearSelection();
-               bvcur.setSelection(true);
+               bvcur.selection(true);
                bvcur.setCursor(end);
-               bvcur.setSelection(true);
+               bvcur.selection(true);
        } else {
                // FIXME LFUN
                // If we used a LFUN, dispatch would do all of this for us
                int const size = end.pos() - from.pos();
                bv->putSelectionAt(from, size, false);
        }
-       bv->processUpdateFlags(Update::Force | Update::FitCursor);      
+       bv->processUpdateFlags(Update::Force | Update::FitCursor);
 }
 
 void SpellcheckerWidget::Private::forward()
@@ -490,6 +490,8 @@ void SpellcheckerWidget::on_replaceAllPB_clicked()
        LYXERR(Debug::GUI, "Replace all (" << replacement << ")");
        dispatch(FuncRequest(LFUN_WORD_REPLACE, datastring));
        d->forward();
+       // replace all wraps around
+       d->wrapAround(true);
        d->check(); // continue spellchecking
        d->canCheck();
 }