aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/Input/sndfile/decodersndfilefactory.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/Input/sndfile/decodersndfilefactory.cpp')
-rw-r--r--src/plugins/Input/sndfile/decodersndfilefactory.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/plugins/Input/sndfile/decodersndfilefactory.cpp b/src/plugins/Input/sndfile/decodersndfilefactory.cpp
index 82075e124..5ffbb8ddb 100644
--- a/src/plugins/Input/sndfile/decodersndfilefactory.cpp
+++ b/src/plugins/Input/sndfile/decodersndfilefactory.cpp
@@ -47,17 +47,17 @@ bool DecoderSndFileFactory::supports(const QString &source) const
SF_INFO snd_info;
SNDFILE *sndfile = sf_open(source.toLocal8Bit(), SFM_READ, &snd_info);
if (!sndfile)
- return FALSE;
+ return false;
sf_close (sndfile);
sndfile = 0;
return true;
}
- return FALSE;
+ return false;
}
bool DecoderSndFileFactory::canDecode(QIODevice *) const
{
- return FALSE;
+ return false;
}
const DecoderProperties DecoderSndFileFactory::properties() const
@@ -69,7 +69,7 @@ const DecoderProperties DecoderSndFileFactory::properties() const
//properties.contentType = "";
properties.shortName = "sndfile";
properties.hasAbout = true;
- properties.hasSettings = FALSE;
+ properties.hasSettings = false;
properties.noInput = true;
properties.protocols = "file";
return properties;