diff options
author | Adrian Frühwirth | 2018-05-07 09:39:00 +0200 |
---|---|---|
committer | Adrian Frühwirth | 2018-05-07 20:06:29 +0200 |
commit | 8885b37abb842af63e0836263b0db245530fef03 (patch) | |
tree | 9e91036bf7f98aaff4cece8c46c3c9910642030e /engines/titanic/support | |
parent | 9ea943a81e73a18cce8ced74cf20303d0766a22d (diff) | |
download | scummvm-rg350-8885b37abb842af63e0836263b0db245530fef03.tar.gz scummvm-rg350-8885b37abb842af63e0836263b0db245530fef03.tar.bz2 scummvm-rg350-8885b37abb842af63e0836263b0db245530fef03.zip |
TITANIC: Enforce code formatting guidelines
Diffstat (limited to 'engines/titanic/support')
-rw-r--r-- | engines/titanic/support/simple_file.cpp | 2 | ||||
-rw-r--r-- | engines/titanic/support/simple_file.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/engines/titanic/support/simple_file.cpp b/engines/titanic/support/simple_file.cpp index 103f062ac6..83d731f7f2 100644 --- a/engines/titanic/support/simple_file.cpp +++ b/engines/titanic/support/simple_file.cpp @@ -388,7 +388,7 @@ void SimpleFile::writeIndent(uint indent) const { write("\t", 1); } -bool SimpleFile::IsClassStart() { +bool SimpleFile::isClassStart() { char c; do { diff --git a/engines/titanic/support/simple_file.h b/engines/titanic/support/simple_file.h index 01aaa86925..f71ef5b717 100644 --- a/engines/titanic/support/simple_file.h +++ b/engines/titanic/support/simple_file.h @@ -238,7 +238,7 @@ public: * an opening or closing squiggly bracket denoting a class * definition start or end. Returns true if it's a class start */ - bool IsClassStart(); + bool isClassStart(); /** * Write the starting header for a class definition |