diff options
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; } |