summaryrefslogtreecommitdiffstats
path: root/mpeglib/example/yaf/yafcore/lineStack.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'mpeglib/example/yaf/yafcore/lineStack.cpp')
-rw-r--r--mpeglib/example/yaf/yafcore/lineStack.cpp4
1 files changed, 2 insertions, 2 deletions
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;