changed uint in qDebugStream so that qtabmessages work on 64bit machine

git-svn-id: file:///afs/psi.ch/project/sls_det_software/svn/slsDetectorGui@129 af1100a4-978c-4157-bff7-07162d2ba061
This commit is contained in:
l_maliakal_d 2012-12-18 16:33:30 +00:00
parent dbad2a41d8
commit c21d674e89

View File

@ -84,7 +84,8 @@ protected:
virtual streamsize xsputn(const char *p, streamsize n) {
m_string.append(p, p + n);
uint pos = 0;
//changed from uint because of 64 bit
int pos = 0;
while (pos != string::npos)
{