diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-10 06:08:18 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-10 06:08:18 +0000 |
commit | 33e6166f7e62c479bad5d46ad240ea9704f848fd (patch) | |
tree | bc5e8185ff98d6a605247158ca6a5b924dccd67a /libk9copy/k9dvdauthor.cpp | |
parent | 68db2ce8a8c330a47485477eb3cee9e7036f6071 (diff) | |
download | k9copy-33e6166f7e62c479bad5d46ad240ea9704f848fd.tar.gz k9copy-33e6166f7e62c479bad5d46ad240ea9704f848fd.zip |
rename the following methods:
tqfind find
tqreplace replace
tqcontains contains
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/k9copy@1246075 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
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 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); |