summaryrefslogtreecommitdiffstats
path: root/src/widgets/qlistview.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-02-28 22:31:39 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-02-28 22:31:39 -0600
commit41bb408dde90e755b07cd2ab8a9bdec7548c84b0 (patch)
tree6d4d5407c000add30aa78630e009c0e5d633e440 /src/widgets/qlistview.cpp
parent1740cd279522c060e738bbbffacab83355d2b794 (diff)
downloadtqt3-41bb408dde90e755b07cd2ab8a9bdec7548c84b0.tar.gz
tqt3-41bb408dde90e755b07cd2ab8a9bdec7548c84b0.zip
Automated conversion from qt3
Diffstat (limited to 'src/widgets/qlistview.cpp')
-rw-r--r--src/widgets/qlistview.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/widgets/qlistview.cpp b/src/widgets/qlistview.cpp
index 7b776d52..06830bdd 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;
}