aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/dcc
diff options
context:
space:
mode:
authorGravatar IceN9ne2018-11-27 20:29:47 -0500
committerGravatar IceN9ne2018-11-28 22:02:03 -0500
commit081bcfd8329b1ef2a0c027c6ab5da5d7c0686d09 (patch)
treefe7f068c7f0c24320a5981411c9646817fcfcfff /src/modules/dcc
parentModernize to C++17 (diff)
downloadKVIrc-081bcfd8329b1ef2a0c027c6ab5da5d7c0686d09.tar.gz
KVIrc-081bcfd8329b1ef2a0c027c6ab5da5d7c0686d09.tar.bz2
KVIrc-081bcfd8329b1ef2a0c027c6ab5da5d7c0686d09.zip
Remove Q_UNUSED macros
Diffstat (limited to 'src/modules/dcc')
-rw-r--r--src/modules/dcc/DccVideoWindow.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/modules/dcc/DccVideoWindow.cpp b/src/modules/dcc/DccVideoWindow.cpp
index 0e9246146..3497843ba 100644
--- a/src/modules/dcc/DccVideoWindow.cpp
+++ b/src/modules/dcc/DccVideoWindow.cpp
@@ -72,9 +72,8 @@ bool kvi_dcc_video_is_valid_codec(const char * codecName)
return false;
}
-static DccVideoCodec * kvi_dcc_video_get_codec(const char * codecName)
+static DccVideoCodec * kvi_dcc_video_get_codec([[maybe_unused]] const char * codecName)
{
- Q_UNUSED(codecName);
#ifndef COMPILE_DISABLE_OGG_THEORA
if(kvi_strEqualCI("theora", codecName))
return new DccVideoTheoraCodec();