diff options
author | Timothy Pearson <[email protected]> | 2012-03-02 02:11:59 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2012-03-02 02:11:59 -0600 |
commit | 9a75b154bf0732aa3a501b6e31e566e06c5f8a31 (patch) | |
tree | df1e10cc7504665622d096f9ba80dc9e56f3afb8 /src/widgets/qlistbox.cpp | |
parent | a830bf10b7d4ed2c83ffe68c0b22d7c4ba9860b0 (diff) | |
download | qt3-9a75b154bf0732aa3a501b6e31e566e06c5f8a31.tar.gz qt3-9a75b154bf0732aa3a501b6e31e566e06c5f8a31.zip |
Undo prior accidental commit
Diffstat (limited to 'src/widgets/qlistbox.cpp')
-rw-r--r-- | src/widgets/qlistbox.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/widgets/qlistbox.cpp b/src/widgets/qlistbox.cpp index 18968e9..f5e0057 100644 --- a/src/widgets/qlistbox.cpp +++ b/src/widgets/qlistbox.cpp @@ -3789,14 +3789,14 @@ void QListBox::viewportPaintEvent( QPaintEvent * e ) // this stuff has been useful enough times that from now I'm // leaving it in the source. uint i = 0; - tqDebug( "%s/%s: %i rects", className(), name(), r.rects().size() ); + qDebug( "%s/%s: %i rects", className(), name(), r.rects().size() ); while( i < r.rects().size() ) { - tqDebug( "rect %d: %d, %d, %d, %d", i, + qDebug( "rect %d: %d, %d, %d, %d", i, r.rects()[i].left(), r.rects()[i].top(), r.rects()[i].width(), r.rects()[i].height() ); i++; } - tqDebug( "" ); + qDebug( "" ); } #endif @@ -3977,7 +3977,7 @@ QRect QListBox::itemRect( QListBoxItem *item ) const */ int QListBox::inSort( const QListBoxItem * lbi ) { - tqObsolete( "QListBox", "inSort", "insertItem" ); + qObsolete( "QListBox", "inSort", "insertItem" ); if ( !lbi ) return -1; @@ -4009,7 +4009,7 @@ int QListBox::inSort( const QListBoxItem * lbi ) */ int QListBox::inSort( const QString& text ) { - tqObsolete( "QListBox", "inSort", "insertItem" ); + qObsolete( "QListBox", "inSort", "insertItem" ); return inSort( new QListBoxText(text) ); } @@ -4160,7 +4160,7 @@ void QListBox::showEvent( QShowEvent * ) */ bool QListBox::itemYPos( int index, int *yPos ) const { - tqObsolete( "QListBox", "itemYPos" ); + qObsolete( "QListBox", "itemYPos" ); QListBoxItem* i = item(index); if ( !i ) return FALSE; |