From: Julien Rioux Date: Wed, 19 Oct 2011 22:52:34 +0000 (+0000) Subject: Revert "Don't allow newline characters in the command buffer." X-Git-Tag: 2.1.0beta1~2564 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=6c96473ac8cf65eb4c26639b91ddd41ceb9f4a0c;p=lyx.git Revert "Don't allow newline characters in the command buffer." This reverts commit r39809. Some LFUNs require newline characters, and while at the moment we don't have a proper interface for such LFUNs, copy-pasting newlines has been a long-time workaround. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@39893 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/frontends/qt4/GuiCommandBuffer.cpp b/src/frontends/qt4/GuiCommandBuffer.cpp index 1767250166..0d19a49242 100644 --- a/src/frontends/qt4/GuiCommandBuffer.cpp +++ b/src/frontends/qt4/GuiCommandBuffer.cpp @@ -18,7 +18,6 @@ #include "GuiCommandEdit.h" #include "GuiView.h" #include "qt_helpers.h" -#include "Validator.h" #include "BufferView.h" #include "Cursor.h" @@ -108,7 +107,6 @@ GuiCommandBuffer::GuiCommandBuffer(GuiView * view) edit_ = new GuiCommandEdit(this); edit_->setMinimumSize(edit_->sizeHint()); edit_->setFocusPolicy(Qt::ClickFocus); - edit_->setValidator(new NoNewLineValidator(edit_)); connect(edit_, SIGNAL(escapePressed()), this, SLOT(cancel())); connect(edit_, SIGNAL(returnPressed()), this, SLOT(dispatch()));