diff options
author | Michele Calgaro <[email protected]> | 2024-12-15 22:24:41 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-12-15 22:24:41 +0900 |
commit | 39632dffef278b70713ffabd650e987c5bef6aea (patch) | |
tree | 03e96022ce0658052944c4ef28d7a9ee56899de5 /src/fetch | |
parent | 08c9aa58e337095b3b235b8a1f4f10dda7c1f438 (diff) | |
download | tellico-master.tar.gz tellico-master.zip |
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'src/fetch')
-rw-r--r-- | src/fetch/gcstarpluginfetcher.cpp | 6 |
1 files 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 <tdeconfig.h> #include <tdeprocess.h> -#include <kprocio.h> +#include <tdeprocio.h> #include <kstandarddirs.h> #include <tdeaccelmanager.h> @@ -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") |