ObjQt  Diff

Differences From Artifact [1893548556]:

To Artifact [012a13bab1]:


32
33
34
35
36
37
38
39
40
41
42
{
	return [self initWithItems: qByteArray.data()
			     count: qByteArray.count()];
}

- (QByteArray)qByteArray
{
	return QByteArray((const char *)[self items],
	    [self count] * [self itemSize]);
}
@end







|
<


32
33
34
35
36
37
38
39

40
41
{
	return [self initWithItems: qByteArray.data()
			     count: qByteArray.count()];
}

- (QByteArray)qByteArray
{
	return QByteArray((const char *)self.items, self.count * self.itemSize);

}
@end