[EXAMPLES]

* NEW: In DBusExplorer, handle all native DBus datatypes in signatures.


git-svn-id: svn://localhost/gambas/trunk@3137 867c0c6c-44f3-4631-809d-bfa615b0a4ec
This commit is contained in:
Benoît Minisini 2010-08-25 22:35:17 +00:00
parent 377a146a9a
commit 2fc24c7513
3 changed files with 5 additions and 2 deletions

View file

@ -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

View file

@ -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

View file

@ -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