Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoerg Mueller <nexyon@gmail.com>2011-06-15 01:22:22 +0400
committerJoerg Mueller <nexyon@gmail.com>2011-06-15 01:22:22 +0400
commitf8212f4e031a6b3ba12d29830e01d067f2a94273 (patch)
tree940ea17b84647a94aa177219777086d4985e2db4 /intern/audaspace/FX/AUD_FaderFactory.cpp
parentf3f3bcc45e701fac4abcfb68a2bbc60e06e6a9f4 (diff)
3D Audio GSoC:
Removing unneeded const from Factory::createReader.
Diffstat (limited to 'intern/audaspace/FX/AUD_FaderFactory.cpp')
-rw-r--r--intern/audaspace/FX/AUD_FaderFactory.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/audaspace/FX/AUD_FaderFactory.cpp b/intern/audaspace/FX/AUD_FaderFactory.cpp
index e7fe5098d76..635873e0ee5 100644
--- a/intern/audaspace/FX/AUD_FaderFactory.cpp
+++ b/intern/audaspace/FX/AUD_FaderFactory.cpp
@@ -56,7 +56,7 @@ float AUD_FaderFactory::getLength() const
return m_length;
}
-AUD_Reference<AUD_IReader> AUD_FaderFactory::createReader() const
+AUD_Reference<AUD_IReader> AUD_FaderFactory::createReader()
{
return new AUD_FaderReader(getReader(), m_type, m_start, m_length);
}