summaryrefslogtreecommitdiffstats
path: root/kdecore/kshell.h
diff options
context:
space:
mode:
Diffstat (limited to 'kdecore/kshell.h')
-rw-r--r--kdecore/kshell.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/kdecore/kshell.h b/kdecore/kshell.h
index 1b52de099..2e9f3ad98 100644
--- a/kdecore/kshell.h
+++ b/kdecore/kshell.h
@@ -21,8 +21,8 @@
#ifndef _KSHELL_H
#define _KSHELL_H
-#include <qstring.h>
-#include <qstringlist.h>
+#include <tqstring.h>
+#include <tqstringlist.h>
#include "kdelibs_export.h"
/**
@@ -90,7 +90,7 @@ namespace KShell {
* target, see Errors
* @return a list of unquoted words or an empty list if an error occurred
*/
- KDECORE_EXPORT QStringList splitArgs( const QString &cmd, int flags = 0, int *err = 0 );
+ KDECORE_EXPORT TQStringList splitArgs( const TQString &cmd, int flags = 0, int *err = 0 );
/**
* Quotes and joins @p args together according to POSIX shell rules.
@@ -98,7 +98,7 @@ namespace KShell {
* @param args a list of strings to quote and join
* @return a command suitable for shell execution
*/
- KDECORE_EXPORT QString joinArgs( const QStringList &args );
+ KDECORE_EXPORT TQString joinArgs( const TQStringList &args );
/**
* Same as above, but $'' is used instead of '' for the quoting.
@@ -110,7 +110,7 @@ namespace KShell {
* @param args a list of strings to quote and join
* @return a command suitable for shell execution
*/
- KDECORE_EXPORT QString joinArgsDQ( const QStringList &args );
+ KDECORE_EXPORT TQString joinArgsDQ( const TQStringList &args );
/**
* Quotes and joins @p argv together according to POSIX shell rules.
@@ -121,7 +121,7 @@ namespace KShell {
* @p argv must be null-terminated.
* @return a command suitable for shell execution
*/
- KDECORE_EXPORT QString joinArgs( const char * const *argv, int argc = -1 );
+ KDECORE_EXPORT TQString joinArgs( const char * const *argv, int argc = -1 );
/**
* Performs tilde expansion on @p path. Interprets "~/path" and
@@ -130,7 +130,7 @@ namespace KShell {
* @param path the path to tilde-expand
* @return the expanded path
*/
- KDECORE_EXPORT QString tildeExpand( const QString &path );
+ KDECORE_EXPORT TQString tildeExpand( const TQString &path );
/**
* Obtain a @p user's home directory.
@@ -139,7 +139,7 @@ namespace KShell {
* An empty string denotes the current user.
* @return The user's home directory.
*/
- KDECORE_EXPORT QString homeDir( const QString &user );
+ KDECORE_EXPORT TQString homeDir( const TQString &user );
}