From a423cf3db8fa90cc09d2f92ff892e4fcdda4af16 Mon Sep 17 00:00:00 2001 From: Ben Boeckel Date: Mon, 30 Jun 2008 01:37:51 +0000 Subject: [FIX] Replaced Point with QPoint (less duplicate code) [FIX] Fraction and Point widgets are more compact [FIX] Fleshed out more of the TeamMember [FIX] Map tilemap editor now expands to fill all available area [FIX] Added priority values to abilities and moves [FIX] Added option for ATB-like battle rounds git-svn-id: https://pokegen.svn.sourceforge.net/svnroot/pokegen/trunk@217 6ecfd1a5-f3ed-3746-8530-beee90d26b22 --- pokemod/MapWarp.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'pokemod/MapWarp.cpp') diff --git a/pokemod/MapWarp.cpp b/pokemod/MapWarp.cpp index 872fe894..b261228b 100644 --- a/pokemod/MapWarp.cpp +++ b/pokemod/MapWarp.cpp @@ -70,7 +70,7 @@ void Pokemod::MapWarp::load(const QDomElement& xml) { LOAD_BEGIN(); LOAD(QString, name); - LOAD(Point, coordinate); + LOAD(QPoint, coordinate); LOAD(int, type); LOAD(int, toMap); LOAD(int, toWarp); @@ -81,7 +81,7 @@ QDomElement Pokemod::MapWarp::save() const { SAVE_CREATE(); SAVE(QString, name); - SAVE(Point, coordinate); + SAVE(QPoint, coordinate); SAVE(int, type); SAVE(int, toMap); SAVE(int, toWarp); @@ -94,7 +94,7 @@ void Pokemod::MapWarp::setName(const QString& name) CHECK(name); } -void Pokemod::MapWarp::setCoordinate(const Point& coordinate) +void Pokemod::MapWarp::setCoordinate(const QPoint& coordinate) { if ((static_cast(parent())->width() <= coordinate.x()) || (static_cast(parent())->height() <= coordinate.y())) { @@ -149,7 +149,7 @@ QString Pokemod::MapWarp::name() const return m_name; } -Pokemod::Point Pokemod::MapWarp::coordinate() const +QPoint Pokemod::MapWarp::coordinate() const { return m_coordinate; } -- cgit