diff options
| author | 2019-06-28 00:16:42 -0400 | |
|---|---|---|
| committer | 2019-06-28 00:16:42 -0400 | |
| commit | 2fe1a3bcac42349967e27b3f7098c25f34efca1d (patch) | |
| tree | e1e95d0d9d885a2ef9c75e75c62f8357cbc4edb6 /src/modules/dcc | |
| parent | KviSSL: Check SSL_in_init before SSL_shutdown (diff) | |
| download | KVIrc-2fe1a3bcac42349967e27b3f7098c25f34efca1d.tar.gz KVIrc-2fe1a3bcac42349967e27b3f7098c25f34efca1d.tar.bz2 KVIrc-2fe1a3bcac42349967e27b3f7098c25f34efca1d.zip | |
DCC Module: Fix virtualness of member functions
Diffstat (limited to 'src/modules/dcc')
| -rw-r--r-- | src/modules/dcc/DccChatWindow.h | 4 | ||||
| -rw-r--r-- | src/modules/dcc/DccVideoWindow.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/modules/dcc/DccChatWindow.h b/src/modules/dcc/DccChatWindow.h index 2af9892c0..298892d9d 100644 --- a/src/modules/dcc/DccChatWindow.h +++ b/src/modules/dcc/DccChatWindow.h @@ -62,10 +62,10 @@ protected: // since the thread is going to die // It should return true if the handing was successful // or false if the thread should be stopped - virtual bool handleIncomingData(KviDccThreadIncomingData * data, bool bCritical); + bool handleIncomingData(KviDccThreadIncomingData * data, bool bCritical); public: - virtual void sendRawData(const void * buffer, int len); // mutex (m_pOutBuffers usage) + void sendRawData(const void * buffer, int len); // mutex (m_pOutBuffers usage) }; class DccChatWindow : public DccWindow diff --git a/src/modules/dcc/DccVideoWindow.h b/src/modules/dcc/DccVideoWindow.h index 1210dcc8b..98bb622f5 100644 --- a/src/modules/dcc/DccVideoWindow.h +++ b/src/modules/dcc/DccVideoWindow.h @@ -104,7 +104,7 @@ protected: void stopPlaying(); bool isPlaying() const { return m_bPlaying; } void run() override; - bool handleIncomingData(KviDccThreadIncomingData * data, bool bCritical) override; + bool handleIncomingData(KviDccThreadIncomingData * data, bool bCritical); }; class DccVideoWindow : public DccWindow |
