[apps/code] Correct text area buffer size

Change-Id: Icc250bd3f4db2e8f9f96471dedbdfd31eab220af
This commit is contained in:
Émilie Feral
2017-08-10 17:53:56 +02:00
parent 212384986f
commit ea55df62d4
3 changed files with 6 additions and 1 deletions

View File

@@ -11,6 +11,7 @@ public:
const char * readOnlyContent() const;
char * editableContent();
void setContent(const char * program);
int bufferSize() const;
private:
constexpr static int k_bufferSize = 1024;
char m_buffer[k_bufferSize];