From 9a75b154bf0732aa3a501b6e31e566e06c5f8a31 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Fri, 2 Mar 2012 02:11:59 -0600 Subject: Undo prior accidental commit --- src/widgets/qlistview.cpp | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'src/widgets/qlistview.cpp') diff --git a/src/widgets/qlistview.cpp b/src/widgets/qlistview.cpp index 0fe6818..d441a59 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 ) - tqWarning( "QCheckListItem::QCheckListItem(), radio button must be " + qWarning( "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 ) - tqWarning( "QCheckListItem::QCheckListItem(), radio button must be " + qWarning( "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 ) { - tqWarning( "QCheckListItem::QCheckListItem(), radio button must be " + qWarning( "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 ) { - tqWarning( "QCheckListItem::QCheckListItem(), radio button must be " + qWarning( "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 ) - tqWarning( "QCheckListItem::QCheckListItem(), radio button must be " + qWarning( "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 ) - tqWarning( "QCheckListItem::QCheckListItem(), radio button must be " + qWarning( "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 ) ) { - tqWarning( "QCheckListItem::setTristate(), has no effect on RadioButton " + qWarning( "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 ) ) - tqWarning( "QListViewItemIterator::operator*() curr out of sync" ); + qWarning( "QListViewItemIterator::operator*() curr out of sync" ); return curr; } @@ -7744,7 +7744,7 @@ QListViewItem* QListViewItemIterator::operator*() QListViewItem *QListViewItemIterator::current() const { if ( curr != 0 && !matchesFlags( curr ) ) - tqWarning( "QListViewItemIterator::current() curr out of sync" ); + qWarning( "QListViewItemIterator::current() curr out of sync" ); return curr; } -- cgit v1.2.3