From afbfdc507bfaafc8824a9808311d57a9ece87510 Mon Sep 17 00:00:00 2001 From: tpearson Date: Thu, 7 Jul 2011 21:14:06 +0000 Subject: Rename incorrect instances of tqrepaint[...] to repaint[...] git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/koffice@1240369 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- lib/koproperty/editor.cpp | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'lib/koproperty') diff --git a/lib/koproperty/editor.cpp b/lib/koproperty/editor.cpp index d664b6b8..880ccc9c 100644 --- a/lib/koproperty/editor.cpp +++ b/lib/koproperty/editor.cpp @@ -436,7 +436,7 @@ Editor::undo() d->currentItem->property()->resetValue(); if (d->currentWidget && d->currentItem) {//(check because current widget could be removed by resetValue()) d->currentWidget->setValue( d->currentItem->property()->value()); - tqrepaintItem(d->currentItem); + repaintItem(d->currentItem); } } @@ -451,7 +451,7 @@ Editor::slotPropertyChanged(Set& set, Property& property) if (d->currentItem && d->currentItem->property() == &property) { d->currentWidget->setValue(property.value(), false); for(TQListViewItem *item = d->currentItem->firstChild(); item; item = item->nextSibling()) - tqrepaintItem(item); + repaintItem(item); } else { // prop not in the dict, might be a child property: @@ -459,9 +459,9 @@ Editor::slotPropertyChanged(Set& set, Property& property) if(!item && property.tqparent()) item = d->itemDict[property.tqparent()->name()]; if (item) { - tqrepaintItem(item); + repaintItem(item); for(TQListViewItem *it = item->firstChild(); it; it = it->nextSibling()) - tqrepaintItem(it); + repaintItem(it); } } @@ -499,7 +499,7 @@ Editor::slotPropertyReset(Set& set, Property& property) if (d->currentItem && d->currentItem->property() == &property) { d->currentWidget->setValue(property.value(), false); for(TQListViewItem *item = d->currentItem->firstChild(); item; item = item->nextSibling()) - tqrepaintItem(item); + repaintItem(item); } else { EditorItem *item = d->itemDict[property.name()]; @@ -507,9 +507,9 @@ Editor::slotPropertyReset(Set& set, Property& property) if(!item && property.tqparent()) item = d->itemDict[property.tqparent()->name()]; if (item) { - tqrepaintItem(item); + repaintItem(item); for(TQListViewItem *it = item->firstChild(); it; it = it->nextSibling()) - tqrepaintItem(it); + repaintItem(it); } } @@ -790,7 +790,7 @@ Editor::slotExpanded(TQListViewItem *item) } updateEditorGeometry(); updateGroupLabelsPosition(); - tqrepaintContents(); + repaintContents(); tqrepaint(); } @@ -814,7 +814,7 @@ Editor::slotCollapsed(TQListViewItem *item) } updateEditorGeometry(); updateGroupLabelsPosition(); - tqrepaintContents(); + repaintContents(); tqrepaint(); } @@ -842,7 +842,7 @@ Editor::slotColumnSizeChanged(int section, int oldSize, int newSize) d->currentWidget->height()); } }*/ -// tqrepaintContents(); +// repaintContents(); // tqrepaint(); updateEditorGeometry(); update(); @@ -1020,7 +1020,7 @@ Editor::setSorting( int column, bool ascending ) KListView::setSorting( column, ascending ); updateEditorGeometry(); updateGroupLabelsPosition(); - tqrepaintContents(); + repaintContents(); tqrepaint(); } -- cgit v1.2.1