summaryrefslogtreecommitdiffstats
path: root/ksnake
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-03-01 13:31:47 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-03-01 13:31:47 -0600
commit51cbc8705e27096dd92d545f6315091876d722c4 (patch)
tree9c27a4a8600523a26a8001305bcb25fb1e33432c /ksnake
parente20152b3772dd625bcabdaec0125f857da91b775 (diff)
downloadtdegames-51cbc8705e27096dd92d545f6315091876d722c4.tar.gz
tdegames-51cbc8705e27096dd92d545f6315091876d722c4.zip
Rename additional global TQt functions
Diffstat (limited to 'ksnake')
-rw-r--r--ksnake/board.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/ksnake/board.cpp b/ksnake/board.cpp
index 0959dee1..a55834ad 100644
--- a/ksnake/board.cpp
+++ b/ksnake/board.cpp
@@ -63,7 +63,7 @@ void Pos::addBTree(Pos *np) {
else if(np->index() > index())
p = &right;
else {
- qFatal("Repeated nodes on btree should never happens");
+ tqFatal("Repeated nodes on btree should never happens");
}
if(! *p) {
@@ -113,7 +113,7 @@ void Pos::addList(Pos *np) {
return;
}
}
- qFatal("Shouldn't reach this point");
+ tqFatal("Shouldn't reach this point");
}
Board::Board(int s)
@@ -250,7 +250,7 @@ int Board::getNextCloseTo(int s, int d, bool diag, int lastIndex)
return(nextSq);
}
}
- qFatal("Never here");
+ tqFatal("Never here");
}
// Make possible moves.