summaryrefslogtreecommitdiffstats
path: root/libk9copy/k9dvdauthor.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libk9copy/k9dvdauthor.cpp')
-rwxr-xr-xlibk9copy/k9dvdauthor.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/libk9copy/k9dvdauthor.cpp b/libk9copy/k9dvdauthor.cpp
index 51aa324..b35f063 100755
--- a/libk9copy/k9dvdauthor.cpp
+++ b/libk9copy/k9dvdauthor.cpp
@@ -495,7 +495,7 @@ void k9DVDAuthor::DVDAuthorStderr(KProcess *proc, char *buffer, int buflen ) {
float m_percent;
TQString m_remain;
- int pos=m_stderr.tqfind("INFOPOS:");
+ int pos=m_stderr.find("INFOPOS:");
if (pos!=-1) {
progress->setTitle(i18n("Authoring"));
TQString tmp=m_stderr.mid(pos);
@@ -532,12 +532,12 @@ void k9DVDAuthor::DVDAuthorStderr(KProcess *proc, char *buffer, int buflen ) {
int end;
lastMsg=m_stderr;
- if (m_stderr.tqcontains("STAT:")) {
- pos=m_stderr.tqfind("fixing VOBU");
+ if (m_stderr.contains("STAT:")) {
+ pos=m_stderr.find("fixing VOBU");
if (pos!=-1) {
progress->setTitle(i18n("Authoring"));
progress->setLabelText(i18n("Fixing VOBUS"));
- end=m_stderr.tqfind("%");
+ end=m_stderr.find("%");
if (end!=-1) {
pos =end -2;
m_stderr=m_stderr.mid(pos,end-pos);
@@ -548,7 +548,7 @@ void k9DVDAuthor::DVDAuthorStderr(KProcess *proc, char *buffer, int buflen ) {
}
}
- pos=m_stderr.tqfind("INFOIMAGE:");
+ pos=m_stderr.find("INFOIMAGE:");
if (pos!=-1) {
progress->setImage(m_stderr.mid(pos+10));
}
@@ -561,7 +561,7 @@ void k9DVDAuthor::DVDAuthorStdout(KProcess *proc, char *buffer, int buflen) {
TQString c=TQString::tqfromLatin1( buffer,buflen);
//(proc->readStdout());
int pos;
- pos=c.tqfind("STAT");
+ pos=c.find("STAT");
if (pos!=-1) {
c=c.mid(pos);
progress->setLabelText(c);