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
path: root/intern
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2010-07-26 23:00:15 +0400
committerCampbell Barton <ideasman42@gmail.com>2010-07-26 23:00:15 +0400
commitc1649dcf103919b90ea8d8f90bef5ea9eb5ca674 (patch)
treeaba7784d8596f0e1265f1e2474ff5557d8431b73 /intern
parent230d66796b36917992348939b3dad85ee32afdec (diff)
bugfix [#23038] View rotation snap has left and right view names swapped arround.
also noticed some spelling errors.
Diffstat (limited to 'intern')
-rw-r--r--intern/audaspace/intern/AUD_IReader.h2
-rw-r--r--intern/audaspace/intern/AUD_StreamBufferFactory.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/intern/audaspace/intern/AUD_IReader.h b/intern/audaspace/intern/AUD_IReader.h
index 4b563100659..02a46098d32 100644
--- a/intern/audaspace/intern/AUD_IReader.h
+++ b/intern/audaspace/intern/AUD_IReader.h
@@ -60,7 +60,7 @@ public:
virtual void seek(int position)=0;
/**
- * Returns an aproximated length of the source in samples.
+ * Returns an approximated length of the source in samples.
* For readers of the type buffer this has to return a correct value!
* \return The length as sample count. May be negative if unknown.
* \see getType
diff --git a/intern/audaspace/intern/AUD_StreamBufferFactory.cpp b/intern/audaspace/intern/AUD_StreamBufferFactory.cpp
index 4d2cd9e2505..cb97e6125fb 100644
--- a/intern/audaspace/intern/AUD_StreamBufferFactory.cpp
+++ b/intern/audaspace/intern/AUD_StreamBufferFactory.cpp
@@ -44,7 +44,7 @@ AUD_StreamBufferFactory::AUD_StreamBufferFactory(AUD_IFactory* factory)
int index = 0;
sample_t* buffer;
- // get an aproximated size if possible
+ // get an approximated size if possible
int size = reader->getLength();
if(size <= 0)