summaryrefslogtreecommitdiffstats
path: root/kbackgammon/engines/offline
diff options
context:
space:
mode:
Diffstat (limited to 'kbackgammon/engines/offline')
-rw-r--r--kbackgammon/engines/offline/kbgoffline.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/kbackgammon/engines/offline/kbgoffline.cpp b/kbackgammon/engines/offline/kbgoffline.cpp
index f1a16189..f5da0088 100644
--- a/kbackgammon/engines/offline/kbgoffline.cpp
+++ b/kbackgammon/engines/offline/kbgoffline.cpp
@@ -698,11 +698,11 @@ bool KBgEngineOffline::queryClose()
i18n("In the middle of a game. "
"Really quit?"), TQString(), KStdGuiItem::quit())) {
case KMessageBox::Continue :
- return TRUE;
+ return true;
case KMessageBox::Cancel :
- return FALSE;
+ return false;
default: // cancel
- return FALSE;
+ return false;
}
return true;
}