diff options
Diffstat (limited to 'src/kvilib/ext/kvi_databuffer.h')
-rw-r--r-- | src/kvilib/ext/kvi_databuffer.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/kvilib/ext/kvi_databuffer.h b/src/kvilib/ext/kvi_databuffer.h index 9fa7487b..62e09b06 100644 --- a/src/kvilib/ext/kvi_databuffer.h +++ b/src/kvilib/ext/kvi_databuffer.h @@ -49,8 +49,8 @@ public: void addSize(int uSize){ resize(m_uSize + uSize); }; void append(const unsigned char * data,int uSize); void append(const KviDataBuffer &b){ append(b.data(),b.size()); }; - int tqfind(unsigned char c); - int tqfind(const unsigned char * block,int uSize); + int find(unsigned char c); + int find(const unsigned char * block,int uSize); }; #endif //_KVI_DATABUFFER_H_ |