author | zecke <zecke> | 2004-04-05 21:31:55 (UTC) |
---|---|---|
committer | zecke <zecke> | 2004-04-05 21:31:55 (UTC) |
commit | 6457761991ae4ec7951bbf2f628713b2f35910d8 (patch) (side-by-side diff) | |
tree | 429835b9f45625cd1b524f87054190eb31f6480d | |
parent | 1b0c01df09d32727038812ecbf9af57bcc9c4d59 (diff) | |
download | opie-6457761991ae4ec7951bbf2f628713b2f35910d8.zip opie-6457761991ae4ec7951bbf2f628713b2f35910d8.tar.gz opie-6457761991ae4ec7951bbf2f628713b2f35910d8.tar.bz2 |
initialize kind of file.. it is a static
-rw-r--r-- | noncore/graphics/opie-eye/slave/slavereciever.cpp | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/noncore/graphics/opie-eye/slave/slavereciever.cpp b/noncore/graphics/opie-eye/slave/slavereciever.cpp index fb88873..941a5df 100644 --- a/noncore/graphics/opie-eye/slave/slavereciever.cpp +++ b/noncore/graphics/opie-eye/slave/slavereciever.cpp @@ -42,5 +42,5 @@ QDataStream &operator<<( QDataStream& s, const PixmapInfo& inf) { QDataStream &operator>>( QDataStream& s, PixmapInfo& inf ) { s >> inf.file >> inf.width >> inf.height; - owarn << "Recieved " << inf.file.latin1() << " " << inf.width << " " << inf.height << "" << oendl; + owarn << "Recieved " << inf.file.latin1() << " " << inf.width << " " << inf.height << "" << oendl; return s; } @@ -87,5 +87,5 @@ SlaveReciever::~SlaveReciever() { void SlaveReciever::recieveAnswer( const QCString& string, const QByteArray& ar) { - owarn << "String is " << string.data() << "" << oendl; + owarn << "String is " << string.data() << "" << oendl; QDataStream stream(ar, IO_ReadOnly ); QStringList lst; @@ -95,10 +95,12 @@ void SlaveReciever::recieveAnswer( const QCString& string, const QByteArray& ar) if ( string == "thumbInfo(QString)" ) { stream >> inf.file; + inf.kind = false; m_inList.append(inf); }else if ( string == "thumbInfos(QStringList)" ) { stream >> lst; for(QStringList::Iterator it = lst.begin(); it != lst.end(); ++it ) { - owarn << "Adding thumbinfo for file "+ *it << oendl; + owarn << "Adding thumbinfo for file "+ *it << oendl; inf.file = (*it); + inf.kind = false; m_inList.append(inf); } @@ -110,5 +112,5 @@ void SlaveReciever::recieveAnswer( const QCString& string, const QByteArray& ar) stream >> lst; for(QStringList::Iterator it = lst.begin(); it != lst.end(); ++it ) { - owarn << "Adding fullInfo for"+ *it << oendl; + owarn << "Adding fullInfo for"+ *it << oendl; inf.file = (*it); inf.kind = true; @@ -122,5 +124,5 @@ void SlaveReciever::recieveAnswer( const QCString& string, const QByteArray& ar) stream >> list; for(PixmapList::Iterator it = list.begin(); it != list.end(); ++it ) { - owarn << "Got " << (*it).width << " " << (*it).height << " " + (*it).file << oendl; + owarn << "Got " << (*it).width << " " << (*it).height << " " + (*it).file << oendl; m_inPix.append(*it); } @@ -211,5 +213,5 @@ void SlaveReciever::slotSend() { m_out->stop(); - owarn << "Sending " << outPix().count() << " " << outInf().count() << "" << oendl; + owarn << "Sending " << outPix().count() << " " << outInf().count() << "" << oendl; /* queue it and send */ /* if this ever gets a service introduce request queues @@ -220,5 +222,5 @@ void SlaveReciever::slotSend() { answer << outPix(); for ( PixmapList::Iterator it = m_outPix.begin();it!=m_outPix.end();++it ) { - owarn << "Sending out " << (*it).file.latin1() << " " << (*it).width << " " << (*it).height << "" << oendl; + owarn << "Sending out " << (*it).file.latin1() << " " << (*it).width << " " << (*it).height << "" << oendl; } } @@ -227,5 +229,5 @@ void SlaveReciever::slotSend() { answer << outInf(); for ( StringList::Iterator it = m_outList.begin();it!=m_outList.end();++it ) { - owarn << "Sending out2 " + (*it).file << oendl; + owarn << "Sending out2 " + (*it).file << oendl; } } |