diff options
Diffstat (limited to 'lib/widgets/propeditor/childproperty.cpp')
| -rw-r--r-- | lib/widgets/propeditor/childproperty.cpp | 10 | 
1 files changed, 5 insertions, 5 deletions
| diff --git a/lib/widgets/propeditor/childproperty.cpp b/lib/widgets/propeditor/childproperty.cpp index ac53936a..beebad5a 100644 --- a/lib/widgets/propeditor/childproperty.cpp +++ b/lib/widgets/propeditor/childproperty.cpp @@ -44,14 +44,14 @@ ChildProperty::ChildProperty(MultiProperty *parent, const TQString & name, Child  void ChildProperty::setValue(const TQVariant &value, bool // rememberOldValue                               )  { -    qWarning("ChildProperty::setValue"); +    tqWarning("ChildProperty::setValue");      if (!m_parent->valid())          return;      switch (m_parent->type())      {          case Size:          { -            qWarning("ChildProperty::setValue for TQSize"); +            tqWarning("ChildProperty::setValue for TQSize");              TQSize v = m_parent->value().toSize();              if (m_childType == Size_Height)                  v.setHeight(value.toInt()); @@ -62,7 +62,7 @@ void ChildProperty::setValue(const TQVariant &value, bool // rememberOldValue          }          case Point:          { -            qWarning("ChildProperty::setValue for TQPoint"); +            tqWarning("ChildProperty::setValue for TQPoint");              TQPoint v = m_parent->value().toPoint();              if (m_childType == Point_X)                  v.setX(value.toInt()); @@ -73,7 +73,7 @@ void ChildProperty::setValue(const TQVariant &value, bool // rememberOldValue          }          case Rect:          { -            qWarning("ChildProperty::setValue for TQRect"); +            tqWarning("ChildProperty::setValue for TQRect");              TQRect v = m_parent->value().toRect();              if (m_childType == Rect_X)                  v.setX(value.toInt()); @@ -88,7 +88,7 @@ void ChildProperty::setValue(const TQVariant &value, bool // rememberOldValue          }          case SizePolicy:          { -            qWarning("ChildProperty::setValue for TQSizePolicy"); +            tqWarning("ChildProperty::setValue for TQSizePolicy");              TQSizePolicy v = m_parent->value().toSizePolicy();              if (m_childType == SizePolicy_HorData)                  v.setHorData(TQSizePolicy::SizeType(value.toInt())); | 
