aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/dcc
diff options
context:
space:
mode:
authorGravatar IceN9ne2018-11-27 21:38:17 -0500
committerGravatar IceN9ne2018-11-28 22:02:03 -0500
commit7de8aed0e6497b4d60c07047fee488690cb2bf00 (patch)
tree262c4ec16051bd37fb453e4de5d934573a9b62b3 /src/modules/dcc
parentRemove Q_UNUSED macros (diff)
downloadKVIrc-7de8aed0e6497b4d60c07047fee488690cb2bf00.tar.gz
KVIrc-7de8aed0e6497b4d60c07047fee488690cb2bf00.tar.bz2
KVIrc-7de8aed0e6497b4d60c07047fee488690cb2bf00.zip
Remove unnecessary usages of the inline keyword per language evolution.
Diffstat (limited to 'src/modules/dcc')
-rw-r--r--src/modules/dcc/DccVideoWindow.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/dcc/DccVideoWindow.h b/src/modules/dcc/DccVideoWindow.h
index eca3ed97f..492744a57 100644
--- a/src/modules/dcc/DccVideoWindow.h
+++ b/src/modules/dcc/DccVideoWindow.h
@@ -102,7 +102,7 @@ protected:
void stopRecording();
void startPlaying();
void stopPlaying();
- inline bool isPlaying() { return m_bPlaying; };
+ bool isPlaying() const { return m_bPlaying; }
virtual void run();
virtual bool handleIncomingData(KviDccThreadIncomingData * data, bool bCritical);
};