summaryrefslogtreecommitdiffstats
path: root/src/kqrunprocess.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/kqrunprocess.h')
-rw-r--r--src/kqrunprocess.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/kqrunprocess.h b/src/kqrunprocess.h
index 0cd165e..e081c87 100644
--- a/src/kqrunprocess.h
+++ b/src/kqrunprocess.h
@@ -39,12 +39,12 @@ static bool run_process( const TQString& command, const TQString& filename )
case 0: // child
if ( fork() != 0 )
- exit(0); // exit immediately - our child is now has init as his tqparent
+ exit(0); // exit immediately - our child is now has init as his parent
system( preparedcommand.ascii() );
exit (0);
- default: // tqparent
+ default: // parent
break;
}