]> git.lyx.org Git - lyx.git/blobdiff - src/BufferView.C
This moves all LyXText related LyXFuncs to BufferView::Dispatch so that they
[lyx.git] / src / BufferView.C
index 0eca845aeb5e0e026bc3188abebf39ad6a8189b0..12ac9b7e02d8d8a7cbce7678ec59d8c5b4aa2a47 100644 (file)
@@ -291,3 +291,8 @@ BufferView::UpdateCodes operator|(BufferView::UpdateCodes uc1,
        return static_cast<BufferView::UpdateCodes>
                (static_cast<int>(uc1) | static_cast<int>(uc2));
 }
+
+bool BufferView::Dispatch(kb_action action, string const & argument)
+{
+    return pimpl_->Dispatch(action, argument);
+}