diff options
Diffstat (limited to 'src/dinfo.cpp')
| -rw-r--r-- | src/dinfo.cpp | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/src/dinfo.cpp b/src/dinfo.cpp index f6cf476..3147894 100644 --- a/src/dinfo.cpp +++ b/src/dinfo.cpp @@ -1,6 +1,6 @@ /*************************************************************************** - * Copyright (C) 2007 by bisiek * - * bisiek9@gmail.com * + * Copyright (C) 2007 by bisiek * + * bisiek9@gmail.com * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * @@ -21,11 +21,10 @@ dInfo::dInfo() { - mBool=false; - mInt=0; + mBool = false; + mInt = 0; } - dInfo::~dInfo() { } @@ -37,7 +36,7 @@ bool dInfo::gBool() void dInfo::sBool(bool nVal) { - mBool=nVal; + mBool = nVal; } int dInfo::gInt() @@ -47,10 +46,10 @@ int dInfo::gInt() void dInfo::sInt(int nVal) { - mInt=nVal; + mInt = nVal; } void dInfo::inc(int val) { - mInt+=val; + mInt += val; } |
