summaryrefslogtreecommitdiffstats
path: root/src/backends
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-12-15 22:24:13 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-12-15 22:24:13 +0900
commit567e063ea934ef12aa05a5d5b2598c1d6f52890e (patch)
tree8596de87f2a9865ea66582c080abfc8268e68f01 /src/backends
parent1953eddce24dfef0e41764e04a72b34d29d01130 (diff)
downloadkrecipes-567e063ea934ef12aa05a5d5b2598c1d6f52890e.tar.gz
krecipes-567e063ea934ef12aa05a5d5b2598c1d6f52890e.zip
Use TDEProcIO class
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/backends')
-rw-r--r--src/backends/recipedb.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backends/recipedb.cpp b/src/backends/recipedb.cpp
index 1e4dd19..fff517b 100644
--- a/src/backends/recipedb.cpp
+++ b/src/backends/recipedb.cpp
@@ -26,7 +26,7 @@
#include <tdelocale.h>
#include <tdeaboutdata.h>
#include <tdeprocess.h>
-#include <kprocio.h>
+#include <tdeprocio.h>
#include <kfilterdev.h>
#include <tdemessagebox.h>
@@ -414,7 +414,7 @@ bool RecipeDB::restore( const TQString &file, TQString *errMsg )
//by loading the old schema and then porting it to the current version.
empty(); //the user had better be warned!
- KProcIO *process = new KProcIO;
+ TDEProcIO *process = new TDEProcIO;
TQStringList command = restoreCommand();
kdDebug()<<"Restoring backup using: "<<command[0]<<endl;