summaryrefslogtreecommitdiffstats
path: root/src/widgets/qlistview.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-03-02 02:11:59 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-03-02 02:11:59 -0600
commit9a75b154bf0732aa3a501b6e31e566e06c5f8a31 (patch)
treedf1e10cc7504665622d096f9ba80dc9e56f3afb8 /src/widgets/qlistview.cpp
parenta830bf10b7d4ed2c83ffe68c0b22d7c4ba9860b0 (diff)
downloadqt3-9a75b154bf0732aa3a501b6e31e566e06c5f8a31.tar.gz
qt3-9a75b154bf0732aa3a501b6e31e566e06c5f8a31.zip
Undo prior accidental commit
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 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;
}