summaryrefslogtreecommitdiffstats
path: root/src/kqrunprocess.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/kqrunprocess.h')
-rw-r--r--src/kqrunprocess.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/kqrunprocess.h b/src/kqrunprocess.h
index 721599f..0cd165e 100644
--- a/src/kqrunprocess.h
+++ b/src/kqrunprocess.h
@@ -29,7 +29,7 @@ static bool run_process( const TQString& command, const TQString& filename )
// To be safe, URL should contain no quotes, apostrofes and \0 symbols
safefilename.remove (TQRegExp ("['\"\0]"));
- preparedcommand.tqreplace( "%s", safefilename );
+ preparedcommand.replace( "%s", safefilename );
// And run an external command with fork()s
switch ( fork() )