diff options
| author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-07-07 21:14:06 +0000 | 
|---|---|---|
| committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-07-07 21:14:06 +0000 | 
| commit | 82324bf130254bac6932131a55607c866773ca84 (patch) | |
| tree | 0e534d2cc0ec08f75916d501017bd960f8260ceb /lib/widgets/propeditor/propertyeditor.cpp | |
| parent | 2cb2dfe421fb3f11a70368dafbd8a1ec7383d30b (diff) | |
| download | tdevelop-82324bf130254bac6932131a55607c866773ca84.tar.gz tdevelop-82324bf130254bac6932131a55607c866773ca84.zip | |
Rename incorrect instances of tqrepaint[...] to repaint[...]
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdevelop@1240369 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
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);  }  } | 
