bug fix in protocol, increase size of chat dialog

This commit is contained in:
Volker Fischer 2009-09-01 19:34:19 +00:00
parent 0adead367d
commit 976fb0e23d
2 changed files with 6 additions and 5 deletions

View File

@ -5,7 +5,7 @@
<rect>
<x>0</x>
<y>0</y>
<width>360</width>
<width>435</width>
<height>405</height>
</rect>
</property>

View File

@ -415,12 +415,13 @@ bool CProtocol::ParseMessage ( const CVector<uint8_t>& vecbyData,
// immediately send acknowledge message
CreateAndImmSendAcknMess ( iRecID, iRecCounter );
// save current message ID and counter to find out if message
// was resent
iOldRecID = iRecID;
iOldRecCnt = iRecCounter;
}
}
// save current message ID and counter to find out if message was resent
iOldRecID = iRecID;
iOldRecCnt = iRecCounter;
}
else
{