diff options
Diffstat (limited to 'libk9copy/k9dvdauthor.cpp')
-rwxr-xr-x | libk9copy/k9dvdauthor.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libk9copy/k9dvdauthor.cpp b/libk9copy/k9dvdauthor.cpp index 256cf53..e050392 100755 --- a/libk9copy/k9dvdauthor.cpp +++ b/libk9copy/k9dvdauthor.cpp @@ -444,10 +444,10 @@ void k9DVDAuthor::author() { TQString c("dvdauthor"); proc=progress->getProcess();// new TQProcess(c,0); *proc << c << "-x" << m_xml->name(); //locateLocal("tmp", "k9copy/k9author.xml"); - connect( proc, TQT_SIGNAL(receivedStderr(KProcess *, char *, int)), - this, TQT_SLOT(DVDAuthorStderr(KProcess *, char *, int )) ); - connect( proc, TQT_SIGNAL(receivedStdout(KProcess *, char *, int )), - this, TQT_SLOT(DVDAuthorStdout(KProcess *, char *, int)) ); + connect( proc, TQT_SIGNAL(receivedStderr(TDEProcess *, char *, int)), + this, TQT_SLOT(DVDAuthorStderr(TDEProcess *, char *, int )) ); + connect( proc, TQT_SIGNAL(receivedStdout(TDEProcess *, char *, int )), + this, TQT_SLOT(DVDAuthorStdout(TDEProcess *, char *, int)) ); // connect(progress, TQT_SIGNAL(cancelled()), this, TQT_SLOT(stopProcess())); m_copied=0; @@ -488,7 +488,7 @@ void k9DVDAuthor::author() { /** No descriptions */ -void k9DVDAuthor::DVDAuthorStderr(KProcess *proc, char *buffer, int buflen ) { +void k9DVDAuthor::DVDAuthorStderr(TDEProcess *proc, char *buffer, int buflen ) { //TQString m_stderr(proc->readStderr()); TQString m_stderr=TQString::fromLatin1(buffer, buflen); @@ -557,7 +557,7 @@ void k9DVDAuthor::DVDAuthorStderr(KProcess *proc, char *buffer, int buflen ) { } -void k9DVDAuthor::DVDAuthorStdout(KProcess *proc, char *buffer, int buflen) { +void k9DVDAuthor::DVDAuthorStdout(TDEProcess *proc, char *buffer, int buflen) { TQString c=TQString::fromLatin1( buffer,buflen); //(proc->readStdout()); int pos; |