From 5747fe1b2f1b0f1677056dd3f4d36b2910d80630 Mon Sep 17 00:00:00 2001 From: Ben Boeckel Date: Tue, 24 Feb 2009 21:07:11 -0500 Subject: Renamed Sigmod to Game where needed --- sigmodr/widgets/MoveUI.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sigmodr/widgets/MoveUI.cpp') diff --git a/sigmodr/widgets/MoveUI.cpp b/sigmodr/widgets/MoveUI.cpp index 64140aa0..f47ac965 100644 --- a/sigmodr/widgets/MoveUI.cpp +++ b/sigmodr/widgets/MoveUI.cpp @@ -19,8 +19,8 @@ #include "MoveUI.h" // Sigmod includes +#include #include -#include #include Sigmodr::Widgets::MoveUI::MoveUI(Sigmod::Move* move, QWidget* parent) : @@ -38,9 +38,9 @@ void Sigmodr::Widgets::MoveUI::refreshGui() { const bool blocked = varType->blockSignals(true); varType->clear(); - for (int i = 0; i < sigmod()->typeCount(); ++i) + for (int i = 0; i < game()->typeCount(); ++i) { - const Sigmod::Type* type = sigmod()->type(i); + const Sigmod::Type* type = game()->type(i); varType->addItem(type->name(), type->id()); } varType->blockSignals(blocked); -- cgit