freebsd-ports/games/kcheckers/files/patch-view.cc
Tilman Keskinoz 9f76df7345 - Fix build on 4-stable
- Update MASTER_SITES and WWW: line
- Support PREFIX properly
- Support PLIST_FILES/PLIST_DIRS

PR:		80767
Submitted by:	KATO Tsuguru <tkato432@yahoo.com>
2005-05-08 14:09:58 +00:00

11 lines
380 B
C++

--- view.cc.orig Wed Apr 6 15:14:58 2005
+++ view.cc Sat May 7 22:35:53 2005
@@ -632,7 +632,7 @@
m_game_over = true; //aw???
m_aborted = true;
- QString text(tr("Game aborted.")+(!msg.isEmpty() ? "\n"+msg : ""));
+ QString text(tr("Game aborted.")+(!msg.isEmpty() ? QString("\n") +msg : QString("")));
m_status->setText(text);
emit working(false);