aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/Input/mad/decodermadfactory.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/Input/mad/decodermadfactory.cpp')
-rw-r--r--src/plugins/Input/mad/decodermadfactory.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/Input/mad/decodermadfactory.cpp b/src/plugins/Input/mad/decodermadfactory.cpp
index e58a80ff5..3e38cb4b0 100644
--- a/src/plugins/Input/mad/decodermadfactory.cpp
+++ b/src/plugins/Input/mad/decodermadfactory.cpp
@@ -55,7 +55,7 @@ bool DecoderMADFactory::supports(const QString &source) const
return true;
}
}
- return FALSE;
+ return false;
}
bool DecoderMADFactory::canDecode(QIODevice *input) const
@@ -76,9 +76,9 @@ bool DecoderMADFactory::canDecode(QIODevice *input) const
while ((dec_res = mad_header_decode(&header, &stream)) == -1
&& MAD_RECOVERABLE(stream.error))
;
- return dec_res != -1 ? true: FALSE;
+ return dec_res != -1 ? true: false;
}
- return FALSE;
+ return false;
}
const DecoderProperties DecoderMADFactory::properties() const