From 92fd5b0489a98fe19dc6f798f7ae990d2fa28922 Mon Sep 17 00:00:00 2001 From: Ben Boeckel Date: Wed, 18 Mar 2009 12:18:42 -0400 Subject: Remove unneeded semicolons in sigmod --- sigmod/MapWarp.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'sigmod/MapWarp.cpp') diff --git a/sigmod/MapWarp.cpp b/sigmod/MapWarp.cpp index 545e63a0..1ad2d771 100644 --- a/sigmod/MapWarp.cpp +++ b/sigmod/MapWarp.cpp @@ -113,10 +113,10 @@ GETTER(MapWarp, Script, script) CHECK(MapWarp, QString&, name) CHECK_BEGIN(MapWarp, QRect&, area) const Map* map = qobject_cast(parent()); - TBOUNDS_MOD(area_x, 0, map->width() - 1, area.x()); - TBOUNDS_MOD(area_y, 0, map->height() - 1, area.y()); - TBOUNDS_MOD(area_width, 1, map->width() - area.x(), area.width()); - TBOUNDS_MOD(area_height, 1, map->height() - area.y(), area.height()); + TBOUNDS_MOD(area_x, 0, map->width() - 1, area.x()) + TBOUNDS_MOD(area_y, 0, map->height() - 1, area.y()) + TBOUNDS_MOD(area_width, 1, map->width() - area.x(), area.width()) + TBOUNDS_MOD(area_height, 1, map->height() - area.y(), area.height()) CHECK_END() CHECK(MapWarp, Type, type) CHECK_INDEX(MapWarp, int, toMap, game(), map) @@ -124,10 +124,10 @@ CHECK_BEGIN(MapWarp, int, toWarp) const Map* map = game()->mapById(m_toMap); if (!map) { - EBOUNDS_IDX(m_toMap); + EBOUNDS_IDX(m_toMap) return false; } - IBOUNDS(toWarp, map, warp); + IBOUNDS(toWarp, map, warp) CHECK_END() CHECK(MapWarp, Script&, script) -- cgit