diff options
author | Timothy Pearson <[email protected]> | 2012-03-01 13:24:30 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2012-03-01 13:24:30 -0600 |
commit | a830bf10b7d4ed2c83ffe68c0b22d7c4ba9860b0 (patch) | |
tree | 3910055c634e2ca44eacd2c892118634df9b3597 /src/widgets/qlistbox.cpp | |
parent | b0b53cc84f215df9b9bcce77253a6b7a9d300986 (diff) | |
download | qt3-a830bf10b7d4ed2c83ffe68c0b22d7c4ba9860b0.tar.gz qt3-a830bf10b7d4ed2c83ffe68c0b22d7c4ba9860b0.zip |
Rename additional global TQt functions
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 f5e0057..18968e9 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; - qDebug( "%s/%s: %i rects", className(), name(), r.rects().size() ); + tqDebug( "%s/%s: %i rects", className(), name(), r.rects().size() ); while( i < r.rects().size() ) { - qDebug( "rect %d: %d, %d, %d, %d", i, + tqDebug( "rect %d: %d, %d, %d, %d", i, r.rects()[i].left(), r.rects()[i].top(), r.rects()[i].width(), r.rects()[i].height() ); i++; } - qDebug( "" ); + tqDebug( "" ); } #endif @@ -3977,7 +3977,7 @@ QRect QListBox::itemRect( QListBoxItem *item ) const */ int QListBox::inSort( const QListBoxItem * lbi ) { - qObsolete( "QListBox", "inSort", "insertItem" ); + tqObsolete( "QListBox", "inSort", "insertItem" ); if ( !lbi ) return -1; @@ -4009,7 +4009,7 @@ int QListBox::inSort( const QListBoxItem * lbi ) */ int QListBox::inSort( const QString& text ) { - qObsolete( "QListBox", "inSort", "insertItem" ); + tqObsolete( "QListBox", "inSort", "insertItem" ); return inSort( new QListBoxText(text) ); } @@ -4160,7 +4160,7 @@ void QListBox::showEvent( QShowEvent * ) */ bool QListBox::itemYPos( int index, int *yPos ) const { - qObsolete( "QListBox", "itemYPos" ); + tqObsolete( "QListBox", "itemYPos" ); QListBoxItem* i = item(index); if ( !i ) return FALSE; |