diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-11-25 20:06:11 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-11-25 20:06:11 -0600 |
commit | c34905edc35248c9b977593c569aeaab5940ae93 (patch) | |
tree | 88c684e032b2191de7106150c866ee59184870e9 | |
parent | 27b071ab4f34f50e3b87f7b3627d693b6060bb90 (diff) | |
download | dbus-1-tqt-c34905edc35248c9b977593c569aeaab5940ae93.tar.gz dbus-1-tqt-c34905edc35248c9b977593c569aeaab5940ae93.zip |
Add support for marshalled Bool types
-rw-r--r-- | tqdbusmarshall.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tqdbusmarshall.cpp b/tqdbusmarshall.cpp index a1177bb..6d92d8a 100644 --- a/tqdbusmarshall.cpp +++ b/tqdbusmarshall.cpp @@ -233,6 +233,10 @@ static TQValueList<TQT_DBusData> parseSignature(TQCString& signature) { switch (elementType) { + case TQT_DBusData::Bool: + result << TQT_DBusData::fromBool( + (0)); + break; case TQT_DBusData::Byte: result << TQT_DBusData::fromByte( (0)); |