aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorEinar Johan Trøan Sømåen2013-09-30 11:13:29 +0200
committerEinar Johan Trøan Sømåen2013-09-30 11:13:29 +0200
commit15d98724d85b33d9918125999d6f654736ef10af (patch)
treece23bbb3a704150542343aaf51b8401dbbdceae9 /engines
parent5afb297e396fa3ad40559e552008741c6cd6ba66 (diff)
downloadscummvm-rg350-15d98724d85b33d9918125999d6f654736ef10af.tar.gz
scummvm-rg350-15d98724d85b33d9918125999d6f654736ef10af.tar.bz2
scummvm-rg350-15d98724d85b33d9918125999d6f654736ef10af.zip
WINTERMUTE: Formatting (Clean up extra whitespace in UIObject).
Diffstat (limited to 'engines')
-rw-r--r--engines/wintermute/ui/ui_object.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/wintermute/ui/ui_object.cpp b/engines/wintermute/ui/ui_object.cpp
index 0962d83f8b..72a601a251 100644
--- a/engines/wintermute/ui/ui_object.cpp
+++ b/engines/wintermute/ui/ui_object.cpp
@@ -657,12 +657,12 @@ int32 UIObject::getHeight() const {
}
void UIObject::setWidth(int32 width) {
- assert (width >= 0);
+ assert(width >= 0);
_width = width;
}
void UIObject::setHeight(int32 height) {
- assert (height >= 0);
+ assert(height >= 0);
_height = height;
}