From 6f4d3b4f073ed11572f7e8e559a38bb082cd5541 Mon Sep 17 00:00:00 2001 From: Tom Hacohen Date: Thu, 12 May 2016 11:16:13 +0100 Subject: [PATCH] Efl vpath: Fix namespacing to use . and not _. --- src/lib/efl/interfaces/efl_vpath.eo | 2 +- src/lib/efl/interfaces/efl_vpath_file.eo | 2 +- src/lib/efl/interfaces/efl_vpath_file_core.eo | 6 +++--- src/lib/efl/interfaces/efl_vpath_manager.eo | 4 ++-- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/lib/efl/interfaces/efl_vpath.eo b/src/lib/efl/interfaces/efl_vpath.eo index 3ed34cc..70e2781 100644 --- a/src/lib/efl/interfaces/efl_vpath.eo +++ b/src/lib/efl/interfaces/efl_vpath.eo @@ -26,7 +26,7 @@ interface Efl.Vpath params { path: const(char)*; [[ The input virtual file path to fetch ]] } - return: own(Efl.Vpath_File *); [[ An object representing the file ]] + return: own(Efl.Vpath.File *); [[ An object representing the file ]] } } } diff --git a/src/lib/efl/interfaces/efl_vpath_file.eo b/src/lib/efl/interfaces/efl_vpath_file.eo index 74e117a..b3dcf34 100644 --- a/src/lib/efl/interfaces/efl_vpath_file.eo +++ b/src/lib/efl/interfaces/efl_vpath_file.eo @@ -1,4 +1,4 @@ -class Efl.Vpath_File (Eo.Base) +class Efl.Vpath.File (Eo.Base) { [[ VPath File is an actual representation of a downloaded/mapped vpath file diff --git a/src/lib/efl/interfaces/efl_vpath_file_core.eo b/src/lib/efl/interfaces/efl_vpath_file_core.eo index cbe9bca..7c6eabb 100644 --- a/src/lib/efl/interfaces/efl_vpath_file_core.eo +++ b/src/lib/efl/interfaces/efl_vpath_file_core.eo @@ -1,4 +1,4 @@ -class Efl.Vpath_File.Core (Efl.Vpath_File) +class Efl.Vpath.File.Core (Efl.Vpath.File) { [[ Core EFL implementation of a Vpath File @@ -9,7 +9,7 @@ class Efl.Vpath_File.Core (Efl.Vpath_File) implements { Eo.Base.constructor; Eo.Base.destructor; - Efl.Vpath_File.do; - Efl.Vpath_File.wait; + Efl.Vpath.File.do; + Efl.Vpath.File.wait; } } diff --git a/src/lib/efl/interfaces/efl_vpath_manager.eo b/src/lib/efl/interfaces/efl_vpath_manager.eo index 2748909..c81e146 100644 --- a/src/lib/efl/interfaces/efl_vpath_manager.eo +++ b/src/lib/efl/interfaces/efl_vpath_manager.eo @@ -1,4 +1,4 @@ -class Efl.Vpath_Manager (Eo.Base) +class Efl.Vpath.Manager (Eo.Base) { [[ Vpath Manager manages multiple VPath objects that remap/download @@ -12,7 +12,7 @@ class Efl.Vpath_Manager (Eo.Base) params { path: const(char)*; [[ The input virtual file path to fetch ]] } - return: own(Efl.Vpath_File *); [[ An object representing the file ]] + return: own(Efl.Vpath.File *); [[ An object representing the file ]] } register @class { [[Register a vpath with the manager ]] -- 2.7.4