summaryrefslogtreecommitdiffstats
path: root/kioslave/sftp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-16 13:48:59 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-16 13:48:59 -0600
commit371e91c48d010efedcc490858f04b8d75e91a82d (patch)
tree722c82764ee74ef74a48e3ceea5740b3a008b15b /kioslave/sftp
parent9fad243fd6c7e0d838d518cf283a0ec1ccbda1a6 (diff)
downloadtdebase-371e91c48d010efedcc490858f04b8d75e91a82d.tar.gz
tdebase-371e91c48d010efedcc490858f04b8d75e91a82d.zip
Additional renaming of kde to tde
Diffstat (limited to 'kioslave/sftp')
-rw-r--r--kioslave/sftp/Makefile.am2
-rw-r--r--kioslave/sftp/ksshprocess.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/kioslave/sftp/Makefile.am b/kioslave/sftp/Makefile.am
index 1690b5165..c59c1c210 100644
--- a/kioslave/sftp/Makefile.am
+++ b/kioslave/sftp/Makefile.am
@@ -1,4 +1,4 @@
-## Makefile.am of kdebase/kioslave/sftp
+## Makefile.am of tdebase/kioslave/sftp
INCLUDES = $(all_includes)
AM_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_KIO) -lktexteditor
diff --git a/kioslave/sftp/ksshprocess.cpp b/kioslave/sftp/ksshprocess.cpp
index ac425212d..e923fe69e 100644
--- a/kioslave/sftp/ksshprocess.cpp
+++ b/kioslave/sftp/ksshprocess.cpp
@@ -19,7 +19,7 @@
* See the KSshProcess header for examples on use.
*
* This class uses a hacked version of the PTYProcess
- * class. This was needed because the kdelibs PTYProcess does not provide
+ * class. This was needed because the tdelibs PTYProcess does not provide
* access to the pty file descriptor which we need, because ssh prints the
* password prompt to the pty and reads the password from the pty. I don't
* feel I know enough about ptys to confidently modify the orignial