Changeset 6409 for trunk/auto-reply

Show
Ignore:
Timestamp:
07/04/08 03:11:16 (5 months ago)
Author:
flynd
Message:

No need to include licq_socket if we don't use it.

Location:
trunk/auto-reply/src
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • trunk/auto-reply/src/autoreply.cpp

    r6375 r6409  
    3131#include "licq_file.h" 
    3232#include "licq_user.h" 
    33 #include "licq_socket.h" 
    3433#include "licq_constants.h" 
    3534 
     
    4443CLicqAutoReply::CLicqAutoReply(bool _bEnable, bool _bDelete, char *_szStatus) 
    4544{ 
    46   tcp = new TCPSocket; 
    4745  m_bExit = false; 
    4846  m_bEnabled = _bEnable; 
     
    5755CLicqAutoReply::~CLicqAutoReply() 
    5856{ 
    59   delete tcp; 
    6057} 
    6158 
  • trunk/auto-reply/src/autoreply.h

    r4526 r6409  
    77 
    88class CICQDaemon; 
    9 class TCPSocket; 
    109class ICQUser; 
    1110class CUserEvent; 
     
    3130 
    3231  CICQDaemon *licqDaemon; 
    33   TCPSocket *tcp; 
    3432 
    3533public: