]> git.lyx.org Git - features.git/blobdiff - src/insets/inset.C
Implemented spellchecking inside insets. Small fixes. Baruchs fix.
[features.git] / src / insets / inset.C
index dc8163dd031d2b83a511f29b2007db5ac84d3657..28458d27160c72f48b9ded761e8d12c63c720b4c 100644 (file)
@@ -258,3 +258,11 @@ LyXCursor const & Inset::cursor(BufferView * bv) const
 {
        return bv->text->cursor;
 }
+
+string UpdatableInset::selectNextWord(BufferView *bv, float & value) const
+{
+       // we have to unlock ourself in this function by default!
+       bv->unlockInset(const_cast<UpdatableInset *>(this));
+       value = 0;
+       return string();
+}