[DEV] update to etk::FSNode

This commit is contained in:
2012-11-01 10:47:36 +01:00
parent eac1f8f594
commit 8fdeb39b5a
16 changed files with 93 additions and 90 deletions

View File

@@ -89,7 +89,7 @@ class localClassHighlightManager: public ewol::EObject
*/
}
Highlight* Get(etk::File &fileName)
Highlight* Get(etk::FSNode &fileName)
{
int32_t i;
for (i=0; i<listHighlight.Size(); i++) {
@@ -100,7 +100,7 @@ class localClassHighlightManager: public ewol::EObject
return NULL;
}
bool Exist(etk::File &fileName)
bool Exist(etk::FSNode &fileName)
{
if (NULL != Get(fileName) ) {
return true;
@@ -201,7 +201,7 @@ void HighlightManager::loadLanguages(void)
localManager->loadLanguages();
}
Highlight* HighlightManager::Get(etk::File &fileName)
Highlight* HighlightManager::Get(etk::FSNode &fileName)
{
if (NULL == localManager) {
return NULL;
@@ -209,7 +209,7 @@ Highlight* HighlightManager::Get(etk::File &fileName)
return localManager->Get(fileName);
}
bool HighlightManager::Exist(etk::File &fileName)
bool HighlightManager::Exist(etk::FSNode &fileName)
{
if (NULL == localManager) {
return false;