Show
Ignore:
Timestamp:
05/05/08 16:31:53 (7 months ago)
Author:
emostar
Message:

Add the patch by Sergey Kononenko (Message-ID: <20080122012616.48112055@…>)
Included the following additions:

  • Add support for AIM (not all users yet)
  • Fix a few memory leaks
  • Rename SSBI to BART
  • Add constants for BART Types
  • Add support to qt4-gui
  • Use boost in a few cases
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/licq/src/buffer.cpp

    r6165 r6181  
    324324  for (unsigned short i = 0; i < _nSize; i++) *this >> sz[i]; 
    325325  sz[_nSize] = '\0'; 
     326  return sz; 
     327} 
     328 
     329char *CBuffer::UnpackBinBlock(char *sz, unsigned short _nSize) 
     330{ 
     331  for (unsigned short i = 0; i < _nSize; i++) *this >> sz[i]; 
    326332  return sz; 
    327333}