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 7b776d523..06830bddf 100644 --- a/src/widgets/qlistview.cpp +++ b/src/widgets/qlistview.cpp @@ -6048,7 +6048,7 @@ TQCheckListItem::TQCheckListItem( TQCheckListItem *parent, const TQString &text, init(); if ( myType == RadioButton ) { if ( parent->type() != RadioButtonController ) - qWarning( "TQCheckListItem::TQCheckListItem(), radio button must be " + tqWarning( "TQCheckListItem::TQCheckListItem(), radio button must be " "child of a controller" ); else d->exclusive = parent; @@ -6069,7 +6069,7 @@ TQCheckListItem::TQCheckListItem( TQCheckListItem *parent, TQListViewItem *after init(); if ( myType == RadioButton ) { if ( parent->type() != RadioButtonController ) - qWarning( "TQCheckListItem::TQCheckListItem(), radio button must be " + tqWarning( "TQCheckListItem::TQCheckListItem(), radio button must be " "child of a controller" ); else d->exclusive = parent; @@ -6088,7 +6088,7 @@ TQCheckListItem::TQCheckListItem( TQListViewItem *parent, const TQString &text, { myType = tt; if ( myType == RadioButton ) { - qWarning( "TQCheckListItem::TQCheckListItem(), radio button must be " + tqWarning( "TQCheckListItem::TQCheckListItem(), radio button must be " "child of a TQCheckListItem" ); } init(); @@ -6107,7 +6107,7 @@ TQCheckListItem::TQCheckListItem( TQListViewItem *parent, TQListViewItem *after, { myType = tt; if ( myType == RadioButton ) { - qWarning( "TQCheckListItem::TQCheckListItem(), radio button must be " + tqWarning( "TQCheckListItem::TQCheckListItem(), radio button must be " "child of a TQCheckListItem" ); } init(); @@ -6125,7 +6125,7 @@ TQCheckListItem::TQCheckListItem( TQListView *parent, const TQString &text, { myType = tt; if ( tt == RadioButton ) - qWarning( "TQCheckListItem::TQCheckListItem(), radio button must be " + tqWarning( "TQCheckListItem::TQCheckListItem(), radio button must be " "child of a TQCheckListItem" ); init(); } @@ -6142,7 +6142,7 @@ TQCheckListItem::TQCheckListItem( TQListView *parent, TQListViewItem *after, { myType = tt; if ( tt == RadioButton ) - qWarning( "TQCheckListItem::TQCheckListItem(), radio button must be " + tqWarning( "TQCheckListItem::TQCheckListItem(), radio button must be " "child of a TQCheckListItem" ); init(); } @@ -6236,7 +6236,7 @@ TQCheckListItem::~TQCheckListItem() void TQCheckListItem::setTristate( bool b ) { if ( ( myType != CheckBoxController ) && ( myType != CheckBox ) ) { - qWarning( "TQCheckListItem::setTristate(), has no effect on RadioButton " + tqWarning( "TQCheckListItem::setTristate(), has no effect on RadioButton " "or RadioButtonController." ); return; } @@ -7733,7 +7733,7 @@ TQListViewItemIterator &TQListViewItemIterator::operator-=( int j ) TQListViewItem* TQListViewItemIterator::operator*() { if ( curr != 0 && !matchesFlags( curr ) ) - qWarning( "TQListViewItemIterator::operator*() curr out of sync" ); + tqWarning( "TQListViewItemIterator::operator*() curr out of sync" ); return curr; } @@ -7744,7 +7744,7 @@ TQListViewItem* TQListViewItemIterator::operator*() TQListViewItem *TQListViewItemIterator::current() const { if ( curr != 0 && !matchesFlags( curr ) ) - qWarning( "TQListViewItemIterator::current() curr out of sync" ); + tqWarning( "TQListViewItemIterator::current() curr out of sync" ); return curr; } |