[Xfce4-commits] [xfce/xfce4-panel] 01/01: Support for basic gtype to gvariant conversion in wrapper_gvalue_prop_to_gvariant
    noreply at xfce.org 
    noreply at xfce.org
       
    Tue Jul 18 08:54:46 CEST 2017
    
    
  
This is an automated email from the git hooks/post-receive script.
o   c   h   o   s   i       p   u   s   h   e   d       a       c   o   m   m   i   t       t   o       b   r   a   n   c   h       m   a   s   t   e   r   
   in repository xfce/xfce4-panel.
commit 2596199732633e0cf151ebc26e3bdb82c7514196
Author: Ali Abdallah <ali at xfce.org>
Date:   Mon Jul 17 14:54:01 2017 +0200
    Support for basic gtype to gvariant conversion in wrapper_gvalue_prop_to_gvariant
---
 panel/panel-plugin-external-wrapper.c | 9 +++++++++
 1 file changed, 9 insertions(+)
diff --git a/panel/panel-plugin-external-wrapper.c b/panel/panel-plugin-external-wrapper.c
index dff85ce..8f21ccc 100644
--- a/panel/panel-plugin-external-wrapper.c
+++ b/panel/panel-plugin-external-wrapper.c
@@ -267,6 +267,15 @@ panel_plugin_external_wrapper_gvalue_prop_to_gvariant (const GValue *value)
     case G_TYPE_INT:
       type = G_VARIANT_TYPE_INT32;
       break;
+    case G_TYPE_INT64:
+      type = G_VARIANT_TYPE_INT64;
+      break;
+    case G_TYPE_UINT:
+      type = G_VARIANT_TYPE_UINT32;
+      break;
+    case G_TYPE_UINT64:
+      type = G_VARIANT_TYPE_UINT64;
+      break;
     case G_TYPE_BOOLEAN:
       type = G_VARIANT_TYPE_BOOLEAN;
       break;
-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
    
    
More information about the Xfce4-commits
mailing list