diff options
author | Kevin Funk <kevin.funk.ford@kdab.com> | 2015-11-30 15:45:50 +0100 |
---|---|---|
committer | Kevin Funk <kevin.funk@kdab.com> | 2015-11-30 15:43:09 +0000 |
commit | 442c5dd731fdbb99c244375e8733a6e36a188ab5 (patch) | |
tree | 5173ca32e355ad40d8e2b2fa056a1fd49d6b47f4 /src | |
parent | a433af3fccdb2be46a3ed4e6a8f1c0507322cfbd (diff) |
Minor: Fix naming: deSerialize -> deserialize
Change-Id: I375747240d52409f3b8d3654ed6c5da26eb3a40a
Reviewed-by: Continuous Integration (KDAB) <build@kdab.com>
Reviewed-by: Brett Stottlemyer <bstottle@ford.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/remoteobjects/qremoteobjectpacket.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/remoteobjects/qremoteobjectpacket.cpp b/src/remoteobjects/qremoteobjectpacket.cpp index 848f36f..4e4b4cd 100644 --- a/src/remoteobjects/qremoteobjectpacket.cpp +++ b/src/remoteobjects/qremoteobjectpacket.cpp @@ -84,7 +84,7 @@ void serializeInitPacket(DataStreamPacket &ds, const QRemoteObjectSource *object ds.finishPacket(); } -bool deSerializeQVariantList(QDataStream& s, QList<QVariant>& l) +bool deserializeQVariantList(QDataStream &s, QList<QVariant> &l) { quint32 c; s >> c; @@ -116,7 +116,7 @@ bool deSerializeQVariantList(QDataStream& s, QList<QVariant>& l) void deserializeInitPacket(QDataStream &in, QVariantList &values) { - const bool success = deSerializeQVariantList(in, values); + const bool success = deserializeQVariantList(in, values); Q_ASSERT(success); Q_UNUSED(success); } @@ -287,7 +287,7 @@ void deserializeInvokePacket(QDataStream& in, int &call, int &index, QVariantLis { in >> call; in >> index; - const bool success = deSerializeQVariantList(in, args); + const bool success = deserializeQVariantList(in, args); Q_ASSERT(success); Q_UNUSED(success); in >> serialId; |