Enlightenment CVS committal

Author  : pfritz
Project : e17
Module  : apps/exhibit

Dir     : e17/apps/exhibit/src/bin


Modified Files:
        exhibit_file.c exhibit_image.c exhibit_main.c 


Log Message:
*API BREAK* see the discussion in the mailing list. misc and e_modules will 
follow

===================================================================
RCS file: /cvs/e/e17/apps/exhibit/src/bin/exhibit_file.c,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -3 -r1.20 -r1.21
--- exhibit_file.c      6 Jul 2007 20:29:50 -0000       1.20
+++ exhibit_file.c      25 Jul 2007 17:00:54 -0000      1.21
@@ -227,5 +227,5 @@
          }
        return path;    
      }
-   else return ecore_file_get_file(path);
+   else return ecore_file_file_get(path);
 }
===================================================================
RCS file: /cvs/e/e17/apps/exhibit/src/bin/exhibit_image.c,v
retrieving revision 1.51
retrieving revision 1.52
diff -u -3 -r1.51 -r1.52
--- exhibit_image.c     6 Jul 2007 20:29:50 -0000       1.51
+++ exhibit_image.c     25 Jul 2007 17:00:54 -0000      1.52
@@ -1154,11 +1154,11 @@
        if (!filename) exit(0);
        if(strlen(filename) <= 4) exit(0);
        
-       file = ecore_file_get_file(filename);
-       dir = ecore_file_get_dir(filename);
+       file = ecore_file_file_get(filename);
+       dir = ecore_file_dir_get(filename);
        
        filenoext = _ex_file_strip_extention(filename);
-       filenoext = ecore_file_get_file(filenoext);
+       filenoext = ecore_file_file_get(filenoext);
 
        D(("Setting bg: dir: %s \tfile: %s\n", dir, file));
 
===================================================================
RCS file: /cvs/e/e17/apps/exhibit/src/bin/exhibit_main.c,v
retrieving revision 1.118
retrieving revision 1.119
diff -u -3 -r1.118 -r1.119
--- exhibit_main.c      14 Jul 2007 00:07:14 -0000      1.118
+++ exhibit_main.c      25 Jul 2007 17:00:54 -0000      1.119
@@ -569,8 +569,8 @@
         etk_signal_stop();
        
        path = 
etk_entry_text_get(ETK_ENTRY(etk_combobox_entry_entry_get(ETK_COMBOBOX_ENTRY(e->combobox_entry))));
-       dir = ecore_file_get_dir((char*)path);
-       file = ecore_file_get_file(path);
+       dir = ecore_file_dir_get((char*)path);
+       file = ecore_file_file_get(path);
        
        if(!dir || !strcmp(dir, ""))
          dir = strdup("/");
@@ -854,7 +854,7 @@
          continue;
                        
        file += strlen("file://");      
-       dir = ecore_file_get_dir(file);
+       dir = ecore_file_dir_get(file);
        
        if(!ecore_file_is_dir(dir))
          continue;
@@ -867,7 +867,7 @@
        etk_tree_clear(ETK_TREE(e->cur_tab->itree));
        etk_tree_clear(ETK_TREE(e->cur_tab->dtree));
        etk_combobox_entry_clear(ETK_COMBOBOX_ENTRY(e->combobox_entry));
-       _ex_main_populate_files(ecore_file_get_file(file), EX_TREE_UPDATE_ALL);
+       _ex_main_populate_files(ecore_file_file_get(file), EX_TREE_UPDATE_ALL);
        if (ecore_file_exists(file) && !ecore_file_is_dir(file))
          _ex_main_image_set(e, file);
        etk_notebook_page_tab_label_set(ETK_NOTEBOOK(e->notebook), 
e->cur_tab->num, 
@@ -1121,7 +1121,7 @@
          {          
             char *dir2;
             
-            dir2 = ecore_file_get_dir(dir);
+            dir2 = ecore_file_dir_get(dir);
             tab = _ex_tab_new(e, dir2);
             E_FREE(dir2);
             realpath(dir, file);



-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
_______________________________________________
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to