summaryrefslogtreecommitdiffstats
path: root/kdecore/kshell.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:46:43 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:46:43 +0000
commitffe8a83e053396df448e9413828527613ca3bd46 (patch)
treea73d4169e02df4a50f9a12cb165fcd0ab5bac7c6 /kdecore/kshell.h
parent682bf3bfdcbcbb1fca85e8a36ed03e062e0555d5 (diff)
downloadtdelibs-ffe8a83e053396df448e9413828527613ca3bd46.tar.gz
tdelibs-ffe8a83e053396df448e9413828527613ca3bd46.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1157647 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
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 );
}