diff options
Diffstat (limited to 'mpeglib/example/yaf')
-rw-r--r-- | mpeglib/example/yaf/yafcore/buffer.cpp | 2 | ||||
-rw-r--r-- | mpeglib/example/yaf/yafcore/buffer.h | 2 | ||||
-rw-r--r-- | mpeglib/example/yaf/yafcore/lineStack.cpp | 4 | ||||
-rw-r--r-- | mpeglib/example/yaf/yafcore/parser.cpp | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/mpeglib/example/yaf/yafcore/buffer.cpp b/mpeglib/example/yaf/yafcore/buffer.cpp index 3f3d6158..3c58f0ee 100644 --- a/mpeglib/example/yaf/yafcore/buffer.cpp +++ b/mpeglib/example/yaf/yafcore/buffer.cpp @@ -122,7 +122,7 @@ void Buffer::grow(int size) { } -int Buffer::tqfind(char zeichen) { +int Buffer::find(char zeichen) { int i; int nlen=len(); for(i=0;i<nlen;i++) { diff --git a/mpeglib/example/yaf/yafcore/buffer.h b/mpeglib/example/yaf/yafcore/buffer.h index 165c607c..7c1a3d5c 100644 --- a/mpeglib/example/yaf/yafcore/buffer.h +++ b/mpeglib/example/yaf/yafcore/buffer.h @@ -40,7 +40,7 @@ class KDE_EXPORT Buffer { void append(char* buffer,int buflen); - int tqfind(char zeichen); + int find(char zeichen); int len(); void setData(char* msg); diff --git a/mpeglib/example/yaf/yafcore/lineStack.cpp b/mpeglib/example/yaf/yafcore/lineStack.cpp index c72a1104..871665ed 100644 --- a/mpeglib/example/yaf/yafcore/lineStack.cpp +++ b/mpeglib/example/yaf/yafcore/lineStack.cpp @@ -30,7 +30,7 @@ LineStack::~LineStack() { int LineStack::hasLine() { int nPos; - nPos=stack->tqfind('\n'); + nPos=stack->find('\n'); if (nPos == -1) return false; return true; @@ -45,7 +45,7 @@ void LineStack::nextLine(Buffer* nextLine) { char* data=stack->getData(); int nSize=stack->getSize(); - nPos=stack->tqfind('\n'); + nPos=stack->find('\n'); if (nPos == -1) { nextLine->clear(); return; diff --git a/mpeglib/example/yaf/yafcore/parser.cpp b/mpeglib/example/yaf/yafcore/parser.cpp index f9e8fdaa..21b27c6b 100644 --- a/mpeglib/example/yaf/yafcore/parser.cpp +++ b/mpeglib/example/yaf/yafcore/parser.cpp @@ -101,7 +101,7 @@ void Parser::parse(char* strStart,int* nCommand){ int Parser::isOK(){ - // a Commandline ist valid when it tqcontains : + // a Commandline ist valid when it contains : // * 2 * (identifer/value) // * first identifier ist "Command" |