Efl vpath: Fix namespacing to use . and not _.
authorTom Hacohen <tom@stosb.com>
Thu, 12 May 2016 10:16:13 +0000 (11:16 +0100)
committerTom Hacohen <tom@stosb.com>
Thu, 12 May 2016 10:16:13 +0000 (11:16 +0100)
src/lib/efl/interfaces/efl_vpath.eo
src/lib/efl/interfaces/efl_vpath_file.eo
src/lib/efl/interfaces/efl_vpath_file_core.eo
src/lib/efl/interfaces/efl_vpath_manager.eo

index 3ed34cc..70e2781 100644 (file)
@@ -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 ]]
       }
    }
 }
index 74e117a..b3dcf34 100644 (file)
@@ -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
 
index cbe9bca..7c6eabb 100644 (file)
@@ -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;
    }
 }
index 2748909..c81e146 100644 (file)
@@ -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 ]]