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/qlistview.cpp | |
parent | b0b53cc84f215df9b9bcce77253a6b7a9d300986 (diff) | |
download | qt3-a830bf10b7d4ed2c83ffe68c0b22d7c4ba9860b0.tar.gz qt3-a830bf10b7d4ed2c83ffe68c0b22d7c4ba9860b0.zip |
Rename additional global TQt functions
Diffstat (limited to 'src/widgets/qlistview.cpp')
-rw-r--r-- | src/widgets/qlistview.cpp | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/widgets/qlistview.cpp b/src/widgets/qlistview.cpp index d441a59..0fe6818 100644 --- a/src/widgets/qlistview.cpp +++ b/src/widgets/qlistview.cpp @@ -6048,7 +6048,7 @@ QCheckListItem::QCheckListItem( QCheckListItem *parent, const QString &text, init(); if ( myType == RadioButton ) { if ( parent->type() != RadioButtonController ) - qWarning( "QCheckListItem::QCheckListItem(), radio button must be " + tqWarning( "QCheckListItem::QCheckListItem(), radio button must be " "child of a controller" ); else d->exclusive = parent; @@ -6069,7 +6069,7 @@ QCheckListItem::QCheckListItem( QCheckListItem *parent, QListViewItem *after, init(); if ( myType == RadioButton ) { if ( parent->type() != RadioButtonController ) - qWarning( "QCheckListItem::QCheckListItem(), radio button must be " + tqWarning( "QCheckListItem::QCheckListItem(), radio button must be " "child of a controller" ); else d->exclusive = parent; @@ -6088,7 +6088,7 @@ QCheckListItem::QCheckListItem( QListViewItem *parent, const QString &text, { myType = tt; if ( myType == RadioButton ) { - qWarning( "QCheckListItem::QCheckListItem(), radio button must be " + tqWarning( "QCheckListItem::QCheckListItem(), radio button must be " "child of a QCheckListItem" ); } init(); @@ -6107,7 +6107,7 @@ QCheckListItem::QCheckListItem( QListViewItem *parent, QListViewItem *after, { myType = tt; if ( myType == RadioButton ) { - qWarning( "QCheckListItem::QCheckListItem(), radio button must be " + tqWarning( "QCheckListItem::QCheckListItem(), radio button must be " "child of a QCheckListItem" ); } init(); @@ -6125,7 +6125,7 @@ QCheckListItem::QCheckListItem( QListView *parent, const QString &text, { myType = tt; if ( tt == RadioButton ) - qWarning( "QCheckListItem::QCheckListItem(), radio button must be " + tqWarning( "QCheckListItem::QCheckListItem(), radio button must be " "child of a QCheckListItem" ); init(); } @@ -6142,7 +6142,7 @@ QCheckListItem::QCheckListItem( QListView *parent, QListViewItem *after, { myType = tt; if ( tt == RadioButton ) - qWarning( "QCheckListItem::QCheckListItem(), radio button must be " + tqWarning( "QCheckListItem::QCheckListItem(), radio button must be " "child of a QCheckListItem" ); init(); } @@ -6236,7 +6236,7 @@ QCheckListItem::~QCheckListItem() void QCheckListItem::setTristate( bool b ) { if ( ( myType != CheckBoxController ) && ( myType != CheckBox ) ) { - qWarning( "QCheckListItem::setTristate(), has no effect on RadioButton " + tqWarning( "QCheckListItem::setTristate(), has no effect on RadioButton " "or RadioButtonController." ); return; } @@ -7733,7 +7733,7 @@ QListViewItemIterator &QListViewItemIterator::operator-=( int j ) QListViewItem* QListViewItemIterator::operator*() { if ( curr != 0 && !matchesFlags( curr ) ) - qWarning( "QListViewItemIterator::operator*() curr out of sync" ); + tqWarning( "QListViewItemIterator::operator*() curr out of sync" ); return curr; } @@ -7744,7 +7744,7 @@ QListViewItem* QListViewItemIterator::operator*() QListViewItem *QListViewItemIterator::current() const { if ( curr != 0 && !matchesFlags( curr ) ) - qWarning( "QListViewItemIterator::current() curr out of sync" ); + tqWarning( "QListViewItemIterator::current() curr out of sync" ); return curr; } |