summaryrefslogtreecommitdiffstats
path: root/kexi/widget/utils/kexiarrowtip.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kexi/widget/utils/kexiarrowtip.cpp')
-rw-r--r--kexi/widget/utils/kexiarrowtip.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/kexi/widget/utils/kexiarrowtip.cpp b/kexi/widget/utils/kexiarrowtip.cpp
index f22248e6..027af36e 100644
--- a/kexi/widget/utils/kexiarrowtip.cpp
+++ b/kexi/widget/utils/kexiarrowtip.cpp
@@ -88,7 +88,7 @@ void KexiArrowTip::increaseOpacity()
m_opacity += 0.10;
setWindowOpacity(m_opacity);
if (m_opacity < 1.0)
- TQTimer::singleShot(25, this, TQT_SLOT(increaseOpacity()));
+ TQTimer::singleShot(25, this, TQ_SLOT(increaseOpacity()));
}
void KexiArrowTip::decreaseOpacity()
@@ -100,7 +100,7 @@ void KexiArrowTip::decreaseOpacity()
}
m_opacity -= 0.10;
setWindowOpacity(m_opacity);
- TQTimer::singleShot(25, this, TQT_SLOT(decreaseOpacity()));
+ TQTimer::singleShot(25, this, TQ_SLOT(decreaseOpacity()));
}
bool KexiArrowTip::close ( bool alsoDelete )