diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-12-15 22:06:44 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-12-15 22:06:44 +0900 |
commit | af644c020106e7096d4fe9c648f25eede98c972f (patch) | |
tree | e20b7c4bc22bca994e80e6a798313b5800efce21 /tdeio | |
parent | a876c10e905fa357d43de03cf0fcb922cac9e4d5 (diff) | |
download | tdelibs-master.tar.gz tdelibs-master.zip |
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'tdeio')
-rw-r--r-- | tdeio/misc/kpac/discovery.cpp | 6 | ||||
-rw-r--r-- | tdeio/misc/kpac/discovery.h | 4 | ||||
-rw-r--r-- | tdeio/tdefile/tdefilesharedlg.cpp | 2 | ||||
-rw-r--r-- | tdeio/tdeio/tdefileshare.cpp | 4 |
4 files changed, 8 insertions, 8 deletions
diff --git a/tdeio/misc/kpac/discovery.cpp b/tdeio/misc/kpac/discovery.cpp index 9e3cafd19..4e1bab960 100644 --- a/tdeio/misc/kpac/discovery.cpp +++ b/tdeio/misc/kpac/discovery.cpp @@ -42,7 +42,7 @@ #include <tqtimer.h> #include <tdelocale.h> -#include <kprocio.h> +#include <tdeprocio.h> #include <kurl.h> #include "discovery.moc" @@ -51,9 +51,9 @@ namespace KPAC { Discovery::Discovery( TQObject* parent ) : Downloader( parent ), - m_helper( new KProcIO ) + m_helper( new TDEProcIO ) { - connect( m_helper, TQ_SIGNAL( readReady( KProcIO* ) ), TQ_SLOT( helperOutput() ) ); + connect( m_helper, TQ_SIGNAL( readReady( TDEProcIO* ) ), TQ_SLOT( helperOutput() ) ); connect( m_helper, TQ_SIGNAL( processExited( TDEProcess* ) ), TQ_SLOT( failed() ) ); *m_helper << "kpac_dhcp_helper"; diff --git a/tdeio/misc/kpac/discovery.h b/tdeio/misc/kpac/discovery.h index b725fb469..b701d8b74 100644 --- a/tdeio/misc/kpac/discovery.h +++ b/tdeio/misc/kpac/discovery.h @@ -25,7 +25,7 @@ #include "downloader.h" -class KProcIO; +class TDEProcIO; namespace KPAC { @@ -45,7 +45,7 @@ namespace KPAC bool initHostName(); bool checkDomain() const; - KProcIO* m_helper; + TDEProcIO* m_helper; TQString m_hostname; }; } diff --git a/tdeio/tdefile/tdefilesharedlg.cpp b/tdeio/tdefile/tdefilesharedlg.cpp index ca5b97e45..9e3770b6c 100644 --- a/tdeio/tdefile/tdefilesharedlg.cpp +++ b/tdeio/tdefile/tdefilesharedlg.cpp @@ -26,7 +26,7 @@ #include <tqlayout.h> #include <tqlineedit.h> #include <tdeprocess.h> -#include <kprocio.h> +#include <tdeprocio.h> #include <tdelocale.h> #include <tdeglobalsettings.h> #include <kstandarddirs.h> diff --git a/tdeio/tdeio/tdefileshare.cpp b/tdeio/tdeio/tdefileshare.cpp index 00e64d857..584d4e5e2 100644 --- a/tdeio/tdeio/tdefileshare.cpp +++ b/tdeio/tdeio/tdefileshare.cpp @@ -22,7 +22,7 @@ #include <tqfile.h> #include <tqregexp.h> #include <tdeprocess.h> -#include <kprocio.h> +#include <tdeprocio.h> #include <tdelocale.h> #include <kstaticdeleter.h> #include <kstandarddirs.h> @@ -179,7 +179,7 @@ void KFileShare::readShareList() s_authorization = ErrorNotFound; return; } - KProcIO proc; + TDEProcIO proc; proc << exe; if ( !proc.start( TDEProcess::Block ) ) { kdError() << "Can't run " << exe << endl; |