diff options
author | krion <krion@FreeBSD.org> | 2004-08-24 03:01:18 +0800 |
---|---|---|
committer | krion <krion@FreeBSD.org> | 2004-08-24 03:01:18 +0800 |
commit | 72b15311c52ef4f51dfcf2d3b644bb26eaf6a7c1 (patch) | |
tree | 2030d0adcc1d9bc1fe495b3412dd8f824d9936f1 /games/qgo/files | |
parent | 2d2d2a6c48115b2e7e1e44aaf943c93ef9a7c56f (diff) | |
download | freebsd-ports-gnome-72b15311c52ef4f51dfcf2d3b644bb26eaf6a7c1.tar.gz freebsd-ports-gnome-72b15311c52ef4f51dfcf2d3b644bb26eaf6a7c1.tar.zst freebsd-ports-gnome-72b15311c52ef4f51dfcf2d3b644bb26eaf6a7c1.zip |
Update to version 0.2.1
PR: ports/70867
Submitted by: Ports Fury
Diffstat (limited to 'games/qgo/files')
-rw-r--r-- | games/qgo/files/patch-qgo::src::mainwin.cpp | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/games/qgo/files/patch-qgo::src::mainwin.cpp b/games/qgo/files/patch-qgo::src::mainwin.cpp new file mode 100644 index 000000000000..ec5047338faa --- /dev/null +++ b/games/qgo/files/patch-qgo::src::mainwin.cpp @@ -0,0 +1,15 @@ +--- qgo/src/mainwin.cpp.orig Sat Jun 19 07:38:43 2004 ++++ qgo/src/mainwin.cpp Sun Aug 22 15:55:59 2004 +@@ -1604,10 +1604,10 @@ + //set the params of "who command" + if ((whoBox1->currentItem() >1) || (whoBox2->currentItem() >1)) + { +- wparam.append(whoBox1->currentItem()==1 ? "9p" : whoBox1->currentText()); ++ wparam.append(whoBox1->currentItem()==1 ? QString("9p") : whoBox1->currentText()); + if ((whoBox1->currentItem()) && (whoBox2->currentItem())) + wparam.append("-"); +- wparam.append(whoBox2->currentItem()==1 ? "9p" : whoBox2->currentText()); ++ wparam.append(whoBox2->currentItem()==1 ? QString("9p") : whoBox2->currentText()); + } + else if ((whoBox1->currentItem()) || (whoBox2->currentItem())) + wparam.append("1p-9p"); |