summaryrefslogtreecommitdiffstats
path: root/kbackgammon
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-01-25 16:35:27 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-01-25 16:35:27 -0600
commitedc913ee43321fb5ebafe5b4061d7623e9981af7 (patch)
treecc0e826a0e7ed2750a8bfeca0dd2a5444543e1d0 /kbackgammon
parentef45d20eff9875a2e678404c853d2e7b42833544 (diff)
downloadtdegames-edc913ee43321fb5ebafe5b4061d7623e9981af7.tar.gz
tdegames-edc913ee43321fb5ebafe5b4061d7623e9981af7.zip
Fix linear alphabet string errors
Diffstat (limited to 'kbackgammon')
-rw-r--r--kbackgammon/engines/fibs/kbgfibs.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/kbackgammon/engines/fibs/kbgfibs.cpp b/kbackgammon/engines/fibs/kbgfibs.cpp
index cd0896cd..2ab047e7 100644
--- a/kbackgammon/engines/fibs/kbgfibs.cpp
+++ b/kbackgammon/engines/fibs/kbgfibs.cpp
@@ -493,7 +493,7 @@ void KBgEngineFIBS::changeJoin(const TQString &info)
*/
void KBgEngineFIBS::keepAlive()
{
- emit serverString("ABCDEFGHIJKLMNOPTQRSTUVWXYZ");
+ emit serverString("ABCDEFGHIJKLMNOPQRSTUVWXYZ");
}
/*
@@ -1234,7 +1234,7 @@ void KBgEngineFIBS::initPattern()
pat[RejAcpt] = TQRegExp("Type 'accept' or 'reject'\\.$");
pat[YouAcpt] = TQRegExp("^You accept the double\\. The cube shows [0-9]+\\.");
- pat[KeepAlv] = TQRegExp("^\\*\\* Unknown command: 'ABCDEFGHIJKLMNOPTQRSTUVWXYZ'");
+ pat[KeepAlv] = TQRegExp("^\\*\\* Unknown command: 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'");
pat[RatingY] = TQRegExp("You'll see how the rating changes are calculated\\.$");
pat[RatingN] = TQRegExp("You won't see how the rating changes are calculated\\.$");