From 51cbc8705e27096dd92d545f6315091876d722c4 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Thu, 1 Mar 2012 13:31:47 -0600 Subject: Rename additional global TQt functions --- ksnake/board.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'ksnake') 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. -- cgit v1.2.1