summaryrefslogtreecommitdiffstats
path: root/lib/koproperty
diff options
context:
space:
mode:
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();
}