From 39632dffef278b70713ffabd650e987c5bef6aea Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Sun, 15 Dec 2024 22:24:41 +0900 Subject: [PATCH] Use TDEProcIO class Signed-off-by: Michele Calgaro --- src/fetch/gcstarpluginfetcher.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/fetch/gcstarpluginfetcher.cpp b/src/fetch/gcstarpluginfetcher.cpp index fa37de7..4144cf3 100644 --- a/src/fetch/gcstarpluginfetcher.cpp +++ b/src/fetch/gcstarpluginfetcher.cpp @@ -27,7 +27,7 @@ #include #include -#include +#include #include #include @@ -48,7 +48,7 @@ GCstarPluginFetcher::PluginList GCstarPluginFetcher::plugins(int collType_) { TQString gcstar = TDEStandardDirs::findExe(TQString::fromLatin1("gcstar")); if(pluginParse == NotYet) { - KProcIO proc; + TDEProcIO proc; proc << gcstar << TQString::fromLatin1("--version"); // wait 5 seconds at most, just a sanity thing, never want to block completely if(proc.start(TDEProcess::Block) && proc.wait(5)) { @@ -92,7 +92,7 @@ void GCstarPluginFetcher::readPluginsNew(int collType_, const TQString& gcstar_) return; } - KProcIO proc; + TDEProcIO proc; proc << gcstar_ << TQString::fromLatin1("-x") << TQString::fromLatin1("--list-plugins")