From 313fa28dc5e72d738faec49ff14fa5aed4a7fcd4 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Thu, 1 Mar 2012 13:37:05 -0600 Subject: Rename additional global TQt functions --- lib/widgets/propeditor/propertyeditor.cpp | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'lib/widgets/propeditor/propertyeditor.cpp') diff --git a/lib/widgets/propeditor/propertyeditor.cpp b/lib/widgets/propeditor/propertyeditor.cpp index a1bd9406..c7eafd8f 100644 --- a/lib/widgets/propeditor/propertyeditor.cpp +++ b/lib/widgets/propeditor/propertyeditor.cpp @@ -219,14 +219,14 @@ void PropertyEditor::populateProperties(PropertyList *list) for (TQValueList > >::const_iterator it = groups.begin(); it != groups.end(); ++it) { -// qWarning("PropertyEditor::populateProperties: adding group %s", (*it).first.ascii()); +// tqWarning("PropertyEditor::populateProperties: adding group %s", (*it).first.ascii()); PropertyGroupItem *group = 0; if ( (!(*it).first.isEmpty()) && ((*it).second.count() > 0) ) group = new PropertyGroupItem(this, (*it).first); const TQValueList &properties = (*it).second; for (TQValueList::const_iterator it2 = properties.begin(); it2 != properties.end(); ++it2) { -// qWarning("PropertyEditor::populateProperties: adding property %s", (*it2).ascii()); +// tqWarning("PropertyEditor::populateProperties: adding property %s", (*it2).ascii()); if (group) addProperty(group, *it2); else @@ -245,7 +245,7 @@ void PropertyEditor::addProperty(PropertyGroupItem *group, const TQString &name) { if ((*m_list)[name] == 0) return; -// qWarning("%s = name : object null ", name.ascii()); +// tqWarning("%s = name : object null ", name.ascii()); PropertyItem *pitem = new PropertyItem(this, group, (*m_list)[name]); addChildProperties(pitem); } @@ -254,7 +254,7 @@ void PropertyEditor::addProperty(const TQString &name) { if ((*m_list)[name] == 0) return; -// qWarning("%s = name : object null ", name.ascii()); +// tqWarning("%s = name : object null ", name.ascii()); PropertyItem *pitem = new PropertyItem(this, (*m_list)[name]); addChildProperties(pitem); } @@ -270,12 +270,12 @@ void PropertyEditor::addChildProperties(PropertyItem *parent) machine(prop); } -// qWarning("seeking children: count: %d", prop->details.count()); +// tqWarning("seeking children: count: %d", prop->details.count()); parent->setOpen(true); for (TQValueList::iterator it = prop->details.begin(); it != prop->details.end(); ++it) { -// qWarning("found child %s", (*it).name().ascii()); +// tqWarning("found child %s", (*it).name().ascii()); new PropertyItem(this, parent, new MultiProperty(&m_detailedList, &(*it))); } } @@ -296,7 +296,7 @@ void PropertyEditor::clearProperties() void PropertyEditor::propertyValueChanged(Property *property) { -// qWarning("PropertyEditor::propertyValueChanged"); +// tqWarning("PropertyEditor::propertyValueChanged"); if (m_currentEditWidget->propertyName() == property->name()) m_currentEditWidget->setValue(property->value(), false); else @@ -316,7 +316,7 @@ void PropertyEditor::propertyChanged(MultiProperty *property, const TQVariant &v if (!property) return; - qWarning("editor: assign %s to %s", property->name().latin1(), value.toString().latin1()); + tqWarning("editor: assign %s to %s", property->name().latin1(), value.toString().latin1()); property->setValue(value, false); //highlight changed properties -- cgit v1.2.3