diff options
Diffstat (limited to 'lib/widgets/propeditor/propertyeditor.cpp')
-rw-r--r-- | lib/widgets/propeditor/propertyeditor.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/widgets/propeditor/propertyeditor.cpp b/lib/widgets/propeditor/propertyeditor.cpp index ce154236..b51ff4fc 100644 --- a/lib/widgets/propeditor/propertyeditor.cpp +++ b/lib/widgets/propeditor/propertyeditor.cpp @@ -305,7 +305,7 @@ void PropertyEditor::propertyValueChanged(Property *property) TQListViewItemIterator it(this); while (it.current()) { - tqrepaintItem(it.current()); + repaintItem(it.current()); ++it; } } @@ -323,7 +323,7 @@ void PropertyEditor::propertyChanged(MultiProperty *property, const TQVariant &v if (m_currentEditItem && (m_currentEditItem->property() == property)) { m_currentEditItem->setChanged(true); - tqrepaintItem(m_currentEditItem); + repaintItem(m_currentEditItem); } emit changed(); @@ -470,7 +470,7 @@ void PropertyEditor::undo() m_currentEditWidget->undo(); m_currentEditItem->setChanged(false); - tqrepaintItem(m_currentEditItem); + repaintItem(m_currentEditItem); } } |