summaryrefslogtreecommitdiffstats
path: root/tdeui/kaction.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tdeui/kaction.cpp')
-rw-r--r--tdeui/kaction.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tdeui/kaction.cpp b/tdeui/kaction.cpp
index 270c00ec4..6a0ad7812 100644
--- a/tdeui/kaction.cpp
+++ b/tdeui/kaction.cpp
@@ -810,7 +810,7 @@ void KAction::unplugAccel()
void KAction::plugMainWindowAccel( TQWidget *w )
{
- // Note: topLevelWidget() stops too early, we can't use it.
+ // Note: tqtopLevelWidget() stops too early, we can't use it.
TQWidget * tl = w;
TQWidget * n;
while ( !tl->isDialog() && ( n = tl->parentWidget() ) ) // lookup parent and store
@@ -1039,7 +1039,7 @@ TQString KAction::whatsThisWithIcon() const
{
TQString text = whatsThis();
if (!d->iconName().isEmpty())
- return TQString::fromLatin1("<img source=\"small|%1\"> %2").arg(d->iconName() ).arg(text);
+ return TQString::tqfromLatin1("<img source=\"small|%1\"> %2").arg(d->iconName() ).arg(text);
return text;
}