summaryrefslogtreecommitdiffstats
path: root/lib/widgets/propeditor/propertyeditor.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/widgets/propeditor/propertyeditor.cpp')
-rw-r--r--lib/widgets/propeditor/propertyeditor.cpp16
1 files changed, 8 insertions, 8 deletions
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<TQPair<TQString, TQValueList<TQString> > >::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<TQString> &properties = (*it).second;
for (TQValueList<TQString>::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<ChildProperty>::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