[atlantik-cvs] CVS: kdegames/atlantik/libatlantikui board.cpp,1.95,1.96
| Newsgroups | gmane.comp.kde.devel.atlantik |
|---|---|
| Message-ID | <[email protected]> |
Update of /home/kde/kdegames/atlantik/libatlantikui
In directory office:/tmp/cvs-serv25135
Modified Files:
board.cpp
Log Message:
kdDebug in addToken when the estate is null, instead of returning silently
Index: board.cpp
===================================================================
RCS file: /home/kde/kdegames/atlantik/libatlantikui/board.cpp,v
retrieving revision 1.95
retrieving revision 1.96
diff -u -d -r1.95 -r1.96
--- board.cpp 2002/09/11 03:50:00 1.95
+++ board.cpp 2002/10/05 04:37:40 1.96
@@ -223,7 +223,10 @@
}
if (!estateView)
+ {
+ kdDebug() << "addToken - estateView null\n";
return;
+ }
Token *token = new Token(player, estateView, this, "token");
tokenMap[player] = token;