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/propertyeditor.cpp | |
| parent | 1040d772e2544a98af4bc49c94b47cea28111559 (diff) | |
| download | tdevelop-313fa28dc5e72d738faec49ff14fa5aed4a7fcd4.tar.gz tdevelop-313fa28dc5e72d738faec49ff14fa5aed4a7fcd4.zip | |
Rename additional global TQt functions
Diffstat (limited to 'lib/widgets/propeditor/propertyeditor.cpp')
| -rw-r--r-- | lib/widgets/propeditor/propertyeditor.cpp | 16 | 
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 | 
