View | Details | Raw Unified | Return to bug 70867
Collapse All | Expand All

(-)games/qgo/Makefile (-1 / +1 lines)
Lines 7-13 Link Here
7
#
7
#
8
8
9
PORTNAME=	qgo
9
PORTNAME=	qgo
10
PORTVERSION=	0.2
10
PORTVERSION=	0.2.1
11
CATEGORIES=	games
11
CATEGORIES=	games
12
MASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
12
MASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
13
MASTER_SITE_SUBDIR=	${PORTNAME}
13
MASTER_SITE_SUBDIR=	${PORTNAME}
(-)games/qgo/distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
MD5 (qgo-0.2.tar.gz) = 75da1a2459d20aa02fd8e5306c599a2d
1
MD5 (qgo-0.2.1.tar.gz) = 39b6fbadb2f728257df78a5893613775
2
SIZE (qgo-0.2.tar.gz) = 1751448
2
SIZE (qgo-0.2.1.tar.gz) = 1781760
(-)games/qgo/files/patch-qgo::src::mainwin.cpp (+15 lines)
Line 0 Link Here
1
--- qgo/src/mainwin.cpp.orig	Sat Jun 19 07:38:43 2004
2
+++ qgo/src/mainwin.cpp	Sun Aug 22 15:55:59 2004
3
@@ -1604,10 +1604,10 @@
4
       //set the params of "who command"
5
       if ((whoBox1->currentItem() >1)  || (whoBox2->currentItem() >1))
6
         {
7
-             wparam.append(whoBox1->currentItem()==1 ? "9p" : whoBox1->currentText());
8
+             wparam.append(whoBox1->currentItem()==1 ? QString("9p") : whoBox1->currentText());
9
              if ((whoBox1->currentItem())  && (whoBox2->currentItem()))
10
                 wparam.append("-");
11
-             wparam.append(whoBox2->currentItem()==1 ? "9p" : whoBox2->currentText());
12
+             wparam.append(whoBox2->currentItem()==1 ? QString("9p") : whoBox2->currentText());
13
          }
14
       else if ((whoBox1->currentItem())  || (whoBox2->currentItem()))
15
            wparam.append("1p-9p");

Return to bug 70867