diff options
Diffstat (limited to 'juk/k3bexporter.cpp')
-rw-r--r-- | juk/k3bexporter.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/juk/k3bexporter.cpp b/juk/k3bexporter.cpp index ab480268..91164c93 100644 --- a/juk/k3bexporter.cpp +++ b/juk/k3bexporter.cpp @@ -164,7 +164,7 @@ void K3bExporter::exportViaCmdLine(const PlaylistItemList &items) return; } - KProcess *process = new KProcess; + TDEProcess *process = new TDEProcess; *process << "k3b"; *process << cmdOption; @@ -173,7 +173,7 @@ void K3bExporter::exportViaCmdLine(const PlaylistItemList &items) for(it = items.begin(); it != items.end(); ++it) *process << (*it)->file().absFilePath(); - if(!process->start(KProcess::DontCare)) + if(!process->start(TDEProcess::DontCare)) KMessageBox::error(m_parent, i18n("Unable to start K3b.")); } |