summaryrefslogtreecommitdiffstats
path: root/src/likeback.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/likeback.cpp')
-rw-r--r--src/likeback.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/likeback.cpp b/src/likeback.cpp
index 202857f..5ed6be7 100644
--- a/src/likeback.cpp
+++ b/src/likeback.cpp
@@ -373,13 +373,13 @@ KConfig* LikeBack::config()
return d->config;
}
-KAction* LikeBack::sendACommentAction(KActionCollection *tqparent)
+KAction* LikeBack::sendACommentAction(KActionCollection *parent)
{
if (d->action == 0)
d->action = new KAction(
i18n("&Send a Comment to Developers"), /*icon=*/"mail_new", /*shortcut=*/"",
this, TQT_SLOT(execCommentDialog()),
- tqparent, "likeback_send_a_comment"
+ parent, "likeback_send_a_comment"
);
return d->action;
@@ -497,7 +497,7 @@ TQString LikeBack::activeWindowPath()
if (name == "unnamed")
name += TQString(":") + window->className();
windowNames.append(name);
- window = dynamic_cast<TQWidget*>(window->tqparent());
+ window = dynamic_cast<TQWidget*>(window->parent());
}
// Create the string of windows starting by the end (from the oldest to the latest):