summaryrefslogtreecommitdiffstats
path: root/lib/koproperty
diff options
context:
space:
mode:
Diffstat (limited to 'lib/koproperty')
-rw-r--r--lib/koproperty/editor.cpp4
-rw-r--r--lib/koproperty/editoritem.cpp2
2 files changed, 3 insertions, 3 deletions
diff --git a/lib/koproperty/editor.cpp b/lib/koproperty/editor.cpp
index 295f24f8..1e63f54f 100644
--- a/lib/koproperty/editor.cpp
+++ b/lib/koproperty/editor.cpp
@@ -390,7 +390,7 @@ void
Editor::changeSetLater()
{
tqApp->eventLoop()->processEvents(TQEventLoop::AllEvents);
- if (kapp->hasPendingEvents()) {
+ if (tdeApp->hasPendingEvents()) {
d->changeSetLaterTimer.start(10, true); //try again...
return;
}
@@ -590,7 +590,7 @@ Editor::slotClicked(TQListViewItem *it)
if (d->currentWidget) {
if (d->currentWidget->visibleFlag()) {
d->currentWidget->show();
- if (hasParent( this, kapp->focusWidget() ))
+ if (hasParent( this, tdeApp->focusWidget() ))
d->currentWidget->setFocus();
}
}
diff --git a/lib/koproperty/editoritem.cpp b/lib/koproperty/editoritem.cpp
index 1d186c4c..250e8c28 100644
--- a/lib/koproperty/editoritem.cpp
+++ b/lib/koproperty/editoritem.cpp
@@ -133,7 +133,7 @@ class GroupWidgetBase : public TQWidget
TQRect r(rect());
TQPainter p(this);
TQStyle::StyleFlags flags = m_mouseDown ? TQStyle::Style_Down : TQStyle::Style_Default;
- kapp->style().drawPrimitive(TQStyle::PE_HeaderSection, &p, r, palette().active(), flags);
+ tdeApp->style().drawPrimitive(TQStyle::PE_HeaderSection, &p, r, palette().active(), flags);
paintListViewExpander(&p, this, r.height()+2, palette().active(), isOpen());
if (!m_miniicon.isNull()) {