remove troublesome lines

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@4756 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
John Levon 2002-07-23 04:57:35 +00:00
parent 907671d259
commit 38f68d107b
2 changed files with 4 additions and 3 deletions

View File

@ -1,3 +1,7 @@
2002-07-23 John Levon <moz@compsoc.man.ac.uk>
* QCommandBuffer.C: real compile fix
2002-07-22 John Levon <moz@compsoc.man.ac.uk>
* QLyXKeySym.C: return 0 when text_ is empty

View File

@ -18,7 +18,6 @@
#include <qcombobox.h>
#include <qtoolbutton.h>
#include <qsize.h>
#include <qpixmap.h>
namespace {
@ -42,11 +41,9 @@ QCommandBuffer::QCommandBuffer(QtView * view, ControlCommandBuffer & control)
QPixmap qp(LibFileSearch("images", "unknown", "xpm").c_str());
QToolButton * upb = new QToolButton(qp, _("Up"), "", this, SLOT(up()), this);
upb->setMinimumSize(upb->sizeHint());
upb->show();
QToolButton * downb = new QToolButton(qp, _("Down"), "", this, SLOT(down()), this);
downb->setMinimumSize(downb->sizeHint());
downb->show();
edit_ = new QCommandEdit(this);