Remove the Buffer ID and the modification state ==> earn space
This commit is contained in:
parent
6340cc409e
commit
c2729b4c67
@ -138,6 +138,8 @@ bool BufferView::GetElement(int32_t colomn, int32_t raw, etk::UString &myTextToW
|
|||||||
if (BufferManager::Exist(realID)) {
|
if (BufferManager::Exist(realID)) {
|
||||||
isModify = BufferManager::Get(realID)->IsModify();
|
isModify = BufferManager::Get(realID)->IsModify();
|
||||||
name = BufferManager::Get(realID)->GetFileName();
|
name = BufferManager::Get(realID)->GetFileName();
|
||||||
|
|
||||||
|
#if 0
|
||||||
char *tmpModify = (char*)" ";
|
char *tmpModify = (char*)" ";
|
||||||
if (true == isModify) {
|
if (true == isModify) {
|
||||||
tmpModify = (char*)"M";
|
tmpModify = (char*)"M";
|
||||||
@ -147,6 +149,9 @@ bool BufferView::GetElement(int32_t colomn, int32_t raw, etk::UString &myTextToW
|
|||||||
myTextToWrite += "](";
|
myTextToWrite += "](";
|
||||||
myTextToWrite += tmpModify;
|
myTextToWrite += tmpModify;
|
||||||
myTextToWrite += ") ";
|
myTextToWrite += ") ";
|
||||||
|
#else
|
||||||
|
myTextToWrite = "";
|
||||||
|
#endif
|
||||||
myTextToWrite += name.GetShortFilename();
|
myTextToWrite += name.GetShortFilename();
|
||||||
|
|
||||||
if (true == isModify) {
|
if (true == isModify) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user