QByteArray error
-
Hi,
QByteArray has these four constructors:
@
QByteArray ()
QByteArray ( const char * str )
QByteArray ( const char * data, int size )
QByteArray ( int size, char ch )
@I cannot find Qt::Initialization in Qt documentation, so I guess you're using QByteArray in a wrong way. Maybe you mean QByteArray(cnt)????
T.
-
You are also assigning a pointer to a non-pointer... but I guess that is not the issue you are asking about:-)