summaryrefslogtreecommitdiffstats
path: root/lib/koproperty
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-07-07 21:14:06 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-07-07 21:14:06 +0000
commitafbfdc507bfaafc8824a9808311d57a9ece87510 (patch)
tree47be45bbd69c321ce79e14b683e59318748be9cb /lib/koproperty
parent880d042b2902fae8007f202dd35ad9330499867b (diff)
downloadkoffice-afbfdc507bfaafc8824a9808311d57a9ece87510.tar.gz
koffice-afbfdc507bfaafc8824a9808311d57a9ece87510.zip
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
Diffstat (limited to 'lib/koproperty')
-rw-r--r--lib/koproperty/editor.cpp22
1 files changed, 11 insertions, 11 deletions
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();
}