|
From: <cn...@us...> - 2020-10-25 04:34:57
|
Revision: 1063
http://sourceforge.net/p/seq/svn/1063
Author: cn187
Date: 2020-10-25 04:34:55 +0000 (Sun, 25 Oct 2020)
Log Message:
-----------
Fix QByteArray copy error
Modified Paths:
--------------
showeq/branches/pre_6_0_beta/src/packetinfo.cpp
Modified: showeq/branches/pre_6_0_beta/src/packetinfo.cpp
===================================================================
--- showeq/branches/pre_6_0_beta/src/packetinfo.cpp 2020-10-25 04:20:17 UTC (rev 1062)
+++ showeq/branches/pre_6_0_beta/src/packetinfo.cpp 2020-10-25 04:34:55 UTC (rev 1063)
@@ -126,7 +126,7 @@
while (it.hasNext())
{
it.next();
- seqInfo("\t%s = %d", it.key(), it.value());
+ seqInfo("\t%s = %d", it.key().data(), it.value());
}
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|