aboutsummaryrefslogtreecommitdiff
path: root/engines/wintermute/base/scriptables/script_value.cpp
diff options
context:
space:
mode:
authorEinar Johan Trøan Sømåen2012-07-27 19:37:00 +0200
committerEinar Johan Trøan Sømåen2012-07-27 19:37:14 +0200
commit8ed71a99f6aaee27a3187cb47fe0c3b30acf88a0 (patch)
tree2d15119ac112cd0751c145f5ba4959f443130bca /engines/wintermute/base/scriptables/script_value.cpp
parentc7fa8e7d1024e4447a7396b5099870d01b775746 (diff)
downloadscummvm-rg350-8ed71a99f6aaee27a3187cb47fe0c3b30acf88a0.tar.gz
scummvm-rg350-8ed71a99f6aaee27a3187cb47fe0c3b30acf88a0.tar.bz2
scummvm-rg350-8ed71a99f6aaee27a3187cb47fe0c3b30acf88a0.zip
WINTERMUTE: Constructor(args): SuperClass(args) -> Constructor(args) : SuperClass(args)
Diffstat (limited to 'engines/wintermute/base/scriptables/script_value.cpp')
-rw-r--r--engines/wintermute/base/scriptables/script_value.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/engines/wintermute/base/scriptables/script_value.cpp b/engines/wintermute/base/scriptables/script_value.cpp
index 9b83daf42f..456f93507e 100644
--- a/engines/wintermute/base/scriptables/script_value.cpp
+++ b/engines/wintermute/base/scriptables/script_value.cpp
@@ -43,7 +43,7 @@ namespace WinterMute {
IMPLEMENT_PERSISTENT(ScValue, false)
//////////////////////////////////////////////////////////////////////////
-ScValue::ScValue(BaseGame *inGame): BaseClass(inGame) {
+ScValue::ScValue(BaseGame *inGame) : BaseClass(inGame) {
_type = VAL_NULL;
_valBool = false;
@@ -58,7 +58,7 @@ ScValue::ScValue(BaseGame *inGame): BaseClass(inGame) {
//////////////////////////////////////////////////////////////////////////
-ScValue::ScValue(BaseGame *inGame, bool val): BaseClass(inGame) {
+ScValue::ScValue(BaseGame *inGame, bool val) : BaseClass(inGame) {
_type = VAL_BOOL;
_valBool = val;
@@ -73,7 +73,7 @@ ScValue::ScValue(BaseGame *inGame, bool val): BaseClass(inGame) {
//////////////////////////////////////////////////////////////////////////
-ScValue::ScValue(BaseGame *inGame, int val): BaseClass(inGame) {
+ScValue::ScValue(BaseGame *inGame, int val) : BaseClass(inGame) {
_type = VAL_INT;
_valInt = val;
@@ -88,7 +88,7 @@ ScValue::ScValue(BaseGame *inGame, int val): BaseClass(inGame) {
//////////////////////////////////////////////////////////////////////////
-ScValue::ScValue(BaseGame *inGame, double val): BaseClass(inGame) {
+ScValue::ScValue(BaseGame *inGame, double val) : BaseClass(inGame) {
_type = VAL_FLOAT;
_valFloat = val;
@@ -103,7 +103,7 @@ ScValue::ScValue(BaseGame *inGame, double val): BaseClass(inGame) {
//////////////////////////////////////////////////////////////////////////
-ScValue::ScValue(BaseGame *inGame, const char *val): BaseClass(inGame) {
+ScValue::ScValue(BaseGame *inGame, const char *val) : BaseClass(inGame) {
_type = VAL_STRING;
_valString = NULL;
setStringVal(val);