summaryrefslogtreecommitdiffstats
path: root/src/k3b.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/k3b.cpp')
-rw-r--r--src/k3b.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/k3b.cpp b/src/k3b.cpp
index f11780b..33fa52a 100644
--- a/src/k3b.cpp
+++ b/src/k3b.cpp
@@ -776,10 +776,10 @@ bool K3bMainWindow::queryClose()
// //
// // now here we have the problem that due to the whole TQt event thing the exec call (or
// // in this case most likely the startJob call) does not return until we leave this method.
-// // That means that the progress dialog might be deleted by it's tqparent below (when we
+// // That means that the progress dialog might be deleted by it's parent below (when we
// // close docs) before it is deleted by the creator (most likely a projectburndialog).
// // That would result in a double deletion and thus a crash.
-// // So we just reparent the dialog to 0 here so it's (former) tqparent won't delete it.
+// // So we just reparent the dialog to 0 here so it's (former) parent won't delete it.
// //
// progressDialog->reparent( 0, TQPoint(0,0) );
// }