diff options
Diffstat (limited to 'kopete/plugins')
-rw-r--r-- | kopete/plugins/cryptography/kgpginterface.cpp | 2 | ||||
-rw-r--r-- | kopete/plugins/cryptography/kgpgselkey.cpp | 2 | ||||
-rw-r--r-- | kopete/plugins/cryptography/popuppublic.cpp | 8 | ||||
-rw-r--r-- | kopete/plugins/cryptography/popuppublic.h | 4 |
4 files changed, 8 insertions, 8 deletions
diff --git a/kopete/plugins/cryptography/kgpginterface.cpp b/kopete/plugins/cryptography/kgpginterface.cpp index 79cd2510..ba3743df 100644 --- a/kopete/plugins/cryptography/kgpginterface.cpp +++ b/kopete/plugins/cryptography/kgpginterface.cpp @@ -28,7 +28,7 @@ #include <unistd.h> #include <tqfile.h> -#include <kprocio.h> +#include <tdeprocio.h> //#include "kdetailedconsole.h" diff --git a/kopete/plugins/cryptography/kgpgselkey.cpp b/kopete/plugins/cryptography/kgpgselkey.cpp index bdb09c86..ff16e230 100644 --- a/kopete/plugins/cryptography/kgpgselkey.cpp +++ b/kopete/plugins/cryptography/kgpgselkey.cpp @@ -69,7 +69,7 @@ KgpgSelKey::KgpgSelKey(TQWidget *parent, const char *name,bool showlocal):KDialo TQString tst,tst2; char line[130]; - // FIXME: Why use popen instead of TDEProcess, TQProcess or KProcIO?!? + // FIXME: Why use popen instead of TDEProcess, TQProcess or TDEProcIO?!? // Are we interested in having buffer overflows now? - Martijn fp = popen( "gpg --no-tty --with-colon --list-secret-keys", "r" ); while ( fgets( line, sizeof(line), fp)) diff --git a/kopete/plugins/cryptography/popuppublic.cpp b/kopete/plugins/cryptography/popuppublic.cpp index 6c1d7271..faa9d95b 100644 --- a/kopete/plugins/cryptography/popuppublic.cpp +++ b/kopete/plugins/cryptography/popuppublic.cpp @@ -34,7 +34,7 @@ #include <tdeversion.h> #include <tdelistview.h> #include <tdeprocess.h> -#include <kprocio.h> +#include <tdeprocio.h> #include <tdelocale.h> #include <tdeaccel.h> #include <tdelistviewsearchline.h> @@ -347,11 +347,11 @@ void popupPublic::refreshkeys() } } }*/ - KProcIO *encid=new KProcIO(); + TDEProcIO *encid=new TDEProcIO(); *encid << "gpg"<<"--no-secmem-warning"<<"--no-tty"<<"--with-colon"<<"--list-keys"; ///////// when process ends, update dialog infos TQObject::connect(encid, TQ_SIGNAL(processExited(TDEProcess *)),this, TQ_SLOT(slotpreselect())); - TQObject::connect(encid, TQ_SIGNAL(readReady(KProcIO *)),this, TQ_SLOT(slotprocread(KProcIO *))); + TQObject::connect(encid, TQ_SIGNAL(readReady(TDEProcIO *)),this, TQ_SLOT(slotprocread(TDEProcIO *))); encid->start(TDEProcess::NotifyOnExit,true); } @@ -382,7 +382,7 @@ void popupPublic::slotSetVisible() keysList->ensureItemVisible(keysList->currentItem()); } -void popupPublic::slotprocread(KProcIO *p) +void popupPublic::slotprocread(TDEProcIO *p) { ///////////////////////////////////////////////////////////////// extract encryption keys bool dead; diff --git a/kopete/plugins/cryptography/popuppublic.h b/kopete/plugins/cryptography/popuppublic.h index cbd301ba..96c7656c 100644 --- a/kopete/plugins/cryptography/popuppublic.h +++ b/kopete/plugins/cryptography/popuppublic.h @@ -29,7 +29,7 @@ class TQPushButton; class TQCheckBox; class TDEListView; class TQButtonGroup; -class KProcIO; +class TDEProcIO; class popupPublic : public KDialogBase //TQDialog { @@ -53,7 +53,7 @@ private: private slots: void customOpts(const TQString &); - void slotprocread(KProcIO *); + void slotprocread(TDEProcIO *); void slotpreselect(); void refreshkeys(); void refresh(bool state); |