[DEV] change the input and entry event function
This commit is contained in:
@@ -167,7 +167,7 @@ void EdnBuf::GetRange(int32_t start, int32_t end, etk::UString &output)
|
||||
* @return The character at buffer position "pos"
|
||||
*
|
||||
*/
|
||||
int8_t EdnBuf::operator[] (int32_t pos)
|
||||
int8_t EdnBuf::operator[] (int32_t pos) const
|
||||
{
|
||||
int8_t res = m_data.Get(pos);
|
||||
return res;
|
||||
|
@@ -65,7 +65,7 @@ class EdnBuf {
|
||||
bool DumpIn( etk::FSNode &file);
|
||||
bool DumpFrom( etk::FSNode &file);
|
||||
// replace with operator [] ...
|
||||
int8_t operator[] (int32_t);
|
||||
int8_t operator[] (int32_t) const;
|
||||
int32_t Insert( int32_t pos, etk::Vector<int8_t> &insertText);
|
||||
int32_t Insert( int32_t pos, etk::UString &insertText);
|
||||
int32_t Replace( int32_t start, int32_t end, etk::Vector<int8_t> &insertText);
|
||||
|
Reference in New Issue
Block a user