transpose const char

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5423 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Lars Gullik Bjønnes 2002-10-15 18:29:01 +00:00
parent 8e6f463ee9
commit bcbfc72c47
3 changed files with 78 additions and 81 deletions

View File

@ -1,3 +1,7 @@
2002-10-15 Lars Gullik Bjønnes <larsbj@birdstep.com>
* QBrowseBox.C (QBrowseBox): transpose const char
2002-10-15 Angus Leeming <leeming@lyx.org>
* QBrowseBox.C (c-tor): default values should go only in the .h file.

View File

@ -2,7 +2,7 @@
* \file QBrowseBox.C
*
* Original file taken from klyx 0.10 sources:
* $Id: QBrowseBox.C,v 1.2 2002/10/15 17:45:12 leeming Exp $
* $Id: QBrowseBox.C,v 1.3 2002/10/15 18:29:01 larsbj Exp $
*
* \author Kalle Dalheimer ?
*
@ -26,7 +26,7 @@
QBrowseBox::QBrowseBox(int rows, int cols, QWidget * parent,
const char * name, WFlags fl)
char const * name, WFlags fl)
: QGridView()
{
setNumRows( rows );
@ -34,8 +34,8 @@ QBrowseBox::QBrowseBox(int rows, int cols, QWidget * parent,
setCellWidth( width()/cols );
setCellHeight( height()/rows );
_texts = new QString[rows*cols];
_pixmaps = new QPixmap[rows*cols];
_texts = new QString[rows * cols];
_pixmaps = new QPixmap[rows * cols];
_activecell.setX( 0 );
_activecell.setY( 0 );

View File

@ -593,10 +593,3 @@ void QDocument::update_contents()
}