From ef41ffcd0d5ac06c867c98f4e6395f504db61041 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Mon, 16 Dec 2024 13:36:02 +0900 Subject: Use TDEProcIO class Signed-off-by: Michele Calgaro --- kopete/plugins/cryptography/popuppublic.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'kopete/plugins/cryptography/popuppublic.cpp') 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 #include #include -#include +#include #include #include #include @@ -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; -- cgit v1.2.1