small modif in the debug log
This commit is contained in:
parent
6e2df2dc77
commit
ecced51f81
@ -48,8 +48,10 @@ Buffer::Buffer()
|
|||||||
m_haveName = false;
|
m_haveName = false;
|
||||||
etk::UString mString = "Untitle - ";
|
etk::UString mString = "Untitle - ";
|
||||||
mString += fileBasicID++;
|
mString += fileBasicID++;
|
||||||
|
EWOL_DEBUG("Create buffer try name : \"" << mString << "\"");
|
||||||
SetFileName(mString);
|
SetFileName(mString);
|
||||||
m_haveName = false;
|
m_haveName = false;
|
||||||
|
EWOL_DEBUG("Create buffer with name : \"" << m_fileName.GetCompleateName() << "\"");
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -63,7 +65,9 @@ Buffer::Buffer()
|
|||||||
Buffer::Buffer(etk::File &newName)
|
Buffer::Buffer(etk::File &newName)
|
||||||
{
|
{
|
||||||
m_fileModify = false;
|
m_fileModify = false;
|
||||||
|
EWOL_DEBUG("Create buffer try name : \"" << newName << "\"");
|
||||||
SetFileName(newName);
|
SetFileName(newName);
|
||||||
|
EWOL_DEBUG("Create buffer with name : \"" << m_fileName.GetCompleateName() << "\"");
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -76,7 +80,7 @@ Buffer::Buffer(etk::File &newName)
|
|||||||
*/
|
*/
|
||||||
Buffer::~Buffer(void)
|
Buffer::~Buffer(void)
|
||||||
{
|
{
|
||||||
|
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* @brief
|
* @brief
|
||||||
|
@ -305,10 +305,8 @@ void MainWindows::OnReceiveMessage(ewol::EObject * CallerObject, const char * ev
|
|||||||
PopUpWidgetPush(tmpWidget);
|
PopUpWidgetPush(tmpWidget);
|
||||||
tmpWidget->RegisterOnEvent(this, ewolEventFileChooserValidate, ednEventPopUpFileSelected);
|
tmpWidget->RegisterOnEvent(this, ewolEventFileChooserValidate, ednEventPopUpFileSelected);
|
||||||
} else if (eventId == ednEventPopUpFileSelected) {
|
} else if (eventId == ednEventPopUpFileSelected) {
|
||||||
// get the filename :
|
APPL_DEBUG("Request opening the file : " << data);
|
||||||
etk::UString tmpData = data;
|
SendMultiCast(ednMsgOpenFile, data);
|
||||||
APPL_DEBUG("Request opening the file : " << tmpData);
|
|
||||||
SendMultiCast(ednMsgOpenFile, tmpData);
|
|
||||||
} else if (eventId == ednMsgGuiSaveAs) {
|
} else if (eventId == ednMsgGuiSaveAs) {
|
||||||
if (data == "") {
|
if (data == "") {
|
||||||
APPL_ERROR("Null data for Save As file ... ");
|
APPL_ERROR("Null data for Save As file ... ");
|
||||||
|
@ -10,12 +10,10 @@ dans la liste des truc important a refaire
|
|||||||
* 0.3.6 ...
|
* 0.3.6 ...
|
||||||
|
|
||||||
* 0.2.X :
|
* 0.2.X :
|
||||||
- gui : Amelioration du full-screen et du display de base (sans l'entete de la fenetre)
|
|
||||||
- gui : Demander la création de nouveaux fichier quand il n'existe pas (a l'ouverture en ligne de commande)
|
- gui : Demander la création de nouveaux fichier quand il n'existe pas (a l'ouverture en ligne de commande)
|
||||||
- sys : Mise en place des colorisation de base pour le
|
- sys : Mise en place des colorisation de base pour le
|
||||||
* java script
|
* java script
|
||||||
* SQL
|
* SQL
|
||||||
- sys : replace TAB with space when Tab is pressed
|
|
||||||
- sys : Catch F[1-12] ==> for user personal event
|
- sys : Catch F[1-12] ==> for user personal event
|
||||||
- BUG : Correction du bug des entré bizard tel que les chapot et les guillemets
|
- BUG : Correction du bug des entré bizard tel que les chapot et les guillemets
|
||||||
- BUG : de sélection quand la ligne est pleine et la première ligne séctionnée. ==> regarder après avoir fait le display ligne par ligne...
|
- BUG : de sélection quand la ligne est pleine et la première ligne séctionnée. ==> regarder après avoir fait le display ligne par ligne...
|
||||||
|
Loading…
x
Reference in New Issue
Block a user