diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-12-16 13:36:02 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-12-16 13:36:02 +0900 |
commit | ef41ffcd0d5ac06c867c98f4e6395f504db61041 (patch) | |
tree | dfb30ad56f63b0ac66339c47771063c94d833dc7 /kopete/plugins/cryptography/popuppublic.cpp | |
parent | 9a9de18eb7ccd5afe5d01c17576a42e7aca6b321 (diff) | |
download | tdenetwork-ef41ffcd0d5ac06c867c98f4e6395f504db61041.tar.gz tdenetwork-ef41ffcd0d5ac06c867c98f4e6395f504db61041.zip |
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kopete/plugins/cryptography/popuppublic.cpp')
-rw-r--r-- | kopete/plugins/cryptography/popuppublic.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
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; |