From 2fc24c751346272edda64ee9a84b3e073b36a5d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beno=C3=AEt=20Minisini?= Date: Wed, 25 Aug 2010 22:35:17 +0000 Subject: [PATCH] [EXAMPLES] * NEW: In DBusExplorer, handle all native DBus datatypes in signatures. git-svn-id: svn://localhost/gambas/trunk@3137 867c0c6c-44f3-4631-809d-bfa615b0a4ec --- examples/examples/Automation/DBusExplorer/.project | 2 +- examples/examples/Automation/DBusExplorer/.settings | 2 +- .../examples/Automation/DBusExplorer/.src/FVersiongbXML.class | 3 +++ 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/examples/examples/Automation/DBusExplorer/.project b/examples/examples/Automation/DBusExplorer/.project index 669e49248..f723aa722 100644 --- a/examples/examples/Automation/DBusExplorer/.project +++ b/examples/examples/Automation/DBusExplorer/.project @@ -12,5 +12,5 @@ Component=gb.settings Component=gb.form.mdi Component=gb.xml Authors="Fabien Bodard\nBenoƮt Minisini" -Environment="GB_GUI=gb.gtk" +Environment="GB_GUI=gb.qt4" TabSize=2 diff --git a/examples/examples/Automation/DBusExplorer/.settings b/examples/examples/Automation/DBusExplorer/.settings index 7cd837042..e8c772ae3 100644 --- a/examples/examples/Automation/DBusExplorer/.settings +++ b/examples/examples/Automation/DBusExplorer/.settings @@ -101,7 +101,7 @@ SearchString=True [OpenFile] Active=1 -File[1]=".src/FVersiongbXML.class:88.0" +File[1]=".src/FVersiongbXML.class:10.11" File[2]=".src/FVersiongbXML.form" Count=2 diff --git a/examples/examples/Automation/DBusExplorer/.src/FVersiongbXML.class b/examples/examples/Automation/DBusExplorer/.src/FVersiongbXML.class index 32e2bd767..fa8910169 100644 --- a/examples/examples/Automation/DBusExplorer/.src/FVersiongbXML.class +++ b/examples/examples/Automation/DBusExplorer/.src/FVersiongbXML.class @@ -8,13 +8,16 @@ Public Sub _new() $cType["i"] = "Integer" $cType["u"] = "Integer" $cType["s"] = "String" + $cType["g"] = "String" $cType["o"] = "DBusObject" $cType["b"] = "Boolean" $cType["y"] = "Byte" $cType["v"] = "Variant" $cType["d"] = "Float" $cType["n"] = "Short" + $cType["q"] = "Short" $cType["x"] = "Long" + $cType["t"] = "Long" $cType["a{sv}"] = "Collection" End