Enlightenment CVS committal

Author  : lok
Project : e17
Module  : libs/e_dbus

Dir     : e17/libs/e_dbus/src/lib/notification


Modified Files:
        marshal.c 


Log Message:
Fix the xy hints handle.

===================================================================
RCS file: /cvs/e/e17/libs/e_dbus/src/lib/notification/marshal.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -3 -r1.4 -r1.5
--- marshal.c   16 Jan 2008 19:22:16 -0000      1.4
+++ marshal.c   21 Feb 2008 17:32:57 -0000      1.5
@@ -461,7 +461,6 @@
       DBusMessageIter variant;
       const char *s_val;
       char y_val;
-      dbus_int32_t i_val;
       dbus_bool_t b_val;
 
       dbus_message_iter_get_basic(&dict, &key);
@@ -494,12 +493,12 @@
         }
       else if (!strcmp(key, "x"))
       {
-        x = i_val;
+        dbus_message_iter_get_basic(&variant, &x);
         x_set = 1;
       }
       else if (!strcmp(key, "y"))
       {
-        y = i_val;
+        dbus_message_iter_get_basic(&variant, &y);
         y_set = 1;
       }
       else if (!strcmp(key, "image_data"))



-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to