diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-03-01 13:37:05 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-03-01 13:37:05 -0600 |
commit | 313fa28dc5e72d738faec49ff14fa5aed4a7fcd4 (patch) | |
tree | df0fec64d296b72881b384fcc7dd4541c84d2d88 /lib/widgets/propeditor/multiproperty.cpp | |
parent | 1040d772e2544a98af4bc49c94b47cea28111559 (diff) | |
download | tdevelop-313fa28dc5e72d738faec49ff14fa5aed4a7fcd4.tar.gz tdevelop-313fa28dc5e72d738faec49ff14fa5aed4a7fcd4.zip |
Rename additional global TQt functions
Diffstat (limited to 'lib/widgets/propeditor/multiproperty.cpp')
-rw-r--r-- | lib/widgets/propeditor/multiproperty.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/lib/widgets/propeditor/multiproperty.cpp b/lib/widgets/propeditor/multiproperty.cpp index ac1cb0fb..eae14e98 100644 --- a/lib/widgets/propeditor/multiproperty.cpp +++ b/lib/widgets/propeditor/multiproperty.cpp @@ -159,7 +159,7 @@ void MultiProperty::setValue(const TQVariant &value) property->setValue(value); if (m_propertyList) { -// qWarning("emit change"); +// tqWarning("emit change"); emit m_propertyList->propertyValueChanged(property); } } @@ -190,11 +190,11 @@ void MultiProperty::addProperty(Property *prop) void MultiProperty::removeProperty(Property *prop) { -/* qWarning("op >> removing %s", prop->name().ascii()); - qWarning("op >> list is %d", list.count());*/ +/* tqWarning("op >> removing %s", prop->name().ascii()); + tqWarning("op >> list is %d", list.count());*/ /*bool b = */list.remove(prop); -/* qWarning("op >> list is %d", list.count()); - qWarning("op >> removal is %s", b?"true":"false"); */ +/* tqWarning("op >> list is %d", list.count()); + tqWarning("op >> removal is %s", b?"true":"false"); */ } bool MultiProperty::operator ==(const MultiProperty &prop) const @@ -206,8 +206,8 @@ bool MultiProperty::operator ==(const MultiProperty &prop) const bool MultiProperty::operator ==(const Property &prop) const { -/* qWarning("MultiProperty::operator == for %s = %s", name().ascii(), prop.name().ascii()); - qWarning("MultiProperty::operator == for %d = %d", type(), prop.type());*/ +/* tqWarning("MultiProperty::operator == for %s = %s", name().ascii(), prop.name().ascii()); + tqWarning("MultiProperty::operator == for %d = %d", type(), prop.type());*/ if ( (type() == prop.type()) && (name() == prop.name()) ) return true; return false; |