summaryrefslogtreecommitdiff
path: root/helpers.cpp
diff options
context:
space:
mode:
authorJavier <maemo@javispedro.com>2014-05-20 02:02:49 +0200
committerJavier <maemo@javispedro.com>2014-05-20 02:02:49 +0200
commit716e886d437386fc0bc9d0d61f178a23587c6e1f (patch)
tree44998aff6cf56e51b737f47d059f806f79152951 /helpers.cpp
parente0677f561465615d84ca81b48955dbf8e169e02e (diff)
downloadlibgato-716e886d437386fc0bc9d0d61f178a23587c6e1f.tar.gz
libgato-716e886d437386fc0bc9d0d61f178a23587c6e1f.zip
fix unintended size in output
Diffstat (limited to 'helpers.cpp')
-rw-r--r--helpers.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/helpers.cpp b/helpers.cpp
index ceb4454..c77c054 100644
--- a/helpers.cpp
+++ b/helpers.cpp
@@ -18,6 +18,7 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
+#include <QtCore/QDataStream>
#include "helpers.h"
static QByteArray reverse(const QByteArray &ba)
@@ -66,3 +67,9 @@ QByteArray gatouuid_to_bytearray(const GatoUUID &uuid, bool use_uuid16, bool use
return reverse(uuid.toRfc4122());
}
+
+void write_gatouuid(QDataStream &s, const GatoUUID &uuid, bool use_uuid16, bool use_uuid32)
+{
+ QByteArray bytes = gatouuid_to_bytearray(uuid, use_uuid16, use_uuid32);
+ s.writeRawData(bytes.constData(), bytes.size());
+}