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:
authorCampbell Barton <ideasman42@gmail.com>2012-03-28 09:03:24 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-03-28 09:03:24 +0400
commit07065b27b8b37316004f40896f436d26e066f25f (patch)
tree19713fa864612e094f21a881e9816a8e1bf42b7b /source/gameengine/Expressions
parentc9f677d24d9600d9ba07f1b258c49455bc348554 (diff)
style cleanup
Diffstat (limited to 'source/gameengine/Expressions')
-rw-r--r--source/gameengine/Expressions/Expression.cpp2
-rw-r--r--source/gameengine/Expressions/InputParser.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/source/gameengine/Expressions/Expression.cpp b/source/gameengine/Expressions/Expression.cpp
index 9ed0ae9ab0d..c1146aaa65c 100644
--- a/source/gameengine/Expressions/Expression.cpp
+++ b/source/gameengine/Expressions/Expression.cpp
@@ -55,7 +55,7 @@ void CBrokenLinkInfo::RestoreLink()
if (m_pExpr)
{
- if (!m_bRestored){
+ if (!m_bRestored) {
m_bRestored=true;
}
diff --git a/source/gameengine/Expressions/InputParser.cpp b/source/gameengine/Expressions/InputParser.cpp
index c8f757f263c..58837235d30 100644
--- a/source/gameengine/Expressions/InputParser.cpp
+++ b/source/gameengine/Expressions/InputParser.cpp
@@ -166,7 +166,7 @@ void CParser::GrabRealString(int start)
const_as_string = STR_String();
for (i=start;i<chcount;i++) {
tmpch= text[i];
- if ((tmpch =='\\') && (text[i+1] == 'n')){
+ if ((tmpch =='\\') && (text[i+1] == 'n')) {
tmpch = '\n';
i++;
}