Enlightenment CVS committal

Author  : englebass
Project : e17
Module  : apps/e

Dir     : e17/apps/e/src/bin


Modified Files:
        e_theme.c 


Log Message:
Fix const warning.

===================================================================
RCS file: /cvs/e/e17/apps/e/src/bin/e_theme.c,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -3 -r1.27 -r1.28
--- e_theme.c   14 Dec 2006 15:32:38 -0000      1.27
+++ e_theme.c   28 Dec 2006 14:29:39 -0000      1.28
@@ -201,6 +201,7 @@
 {
    E_Theme_Result *res;
    char buf[4096];
+   const char *q;
    char *p;
 
    /* find category -> edje mapping */
@@ -239,8 +240,8 @@
                       coll = edje_file_collection_list(str);
                       for (l = coll; l; l = l->next)
                         {
-                           p = evas_stringshare_add(l->data);
-                           res->quickfind = 
evas_hash_direct_add(res->quickfind, p, p);
+                           q = evas_stringshare_add(l->data);
+                           res->quickfind = 
evas_hash_direct_add(res->quickfind, q, q);
                         }
                       if (coll) edje_file_collection_list_free(coll);
                    }



-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to