Changeset 5912 for branches/newapi

Show
Ignore:
Timestamp:
12/02/07 20:41:59 (12 months ago)
Author:
erijo
Message:

Made LogSink? dtor protected

Location:
branches/newapi/licq/licq
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • branches/newapi/licq/licq/interface/logsink.h

    r5911 r5912  
    5252  }; 
    5353 
    54   virtual ~LogSink() {} 
    55  
    5654  /** 
    5755   * @return True if the sink is interested in log messages at @a 
     
    7977   */ 
    8078  virtual void log(const Packet& packet); 
     79 
     80protected: 
     81  virtual ~LogSink() { /* Empty */ } 
    8182}; 
    8283 
  • branches/newapi/licq/licq/log.h

    r5911 r5912  
    139139protected: 
    140140  /// Destroy the log. 
    141   virtual ~Log() {} 
     141  virtual ~Log() { /* Empty */ } 
    142142}; 
    143143