Date: Sat, 29 Jan 2000 12:10:04 -0800 (PST) From: Will Andrews <andrews@technologist.com> To: freebsd-ports@FreeBSD.org Subject: Re: ports/16451: fix games/pp (bentofied) Message-ID: <200001292010.MAA04917@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
The following reply was made to PR ports/16451; it has been noted by GNATS. From: Will Andrews <andrews@technologist.com> To: Alexander Langer <alex@cichlids.com> Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: ports/16451: fix games/pp (bentofied) Date: Sat, 29 Jan 2000 15:07:29 -0500 On Sat, Jan 29, 2000 at 07:34:01PM +0100, Alexander Langer wrote: > use these additional patches for the patches-subdir > > --- patch-ab begins here --- > --- leiste.h.old Sat Jan 29 18:32:21 2000 > +++ leiste.h Sat Jan 29 18:33:40 2000 > @@ -38,7 +38,7 @@ > > class leiste : public QWidget { > > -const int buttonHoehe=104, buttonBreite=140; > +int buttonHoehe, buttonBreite; > //const QString picPfad2="./pic"; > > Q_OBJECT > --- patch-ab ends here --- > > --- patch-ac begins here --- > --- leiste.cpp.old Sat Jan 29 18:32:07 2000 > +++ leiste.cpp Sat Jan 29 18:33:19 2000 > @@ -34,6 +34,8 @@ > QString picPfad="") > :QWidget (parent, name) > { > + buttonHoehe = 104; > + buttonBreite = 104; > sci=0; > setMouseTracking (TRUE); > > --- patch-ac ends here --- I fixed this properly at my site (http://www.psn.net/~andrews/qtkde/). You should have left the const qualifiers in and used the header of the constructor to fix this, as shown on my site. :-> Go look at the diffs... and remember, when you're patching Qt programs, I've probably already done it. ;-) I've now fixed 42 of the 55 ports listed on that page. Help, anyone?? I believe Jeremy Lea has fixed some of those ports in the ports tree, so the number may be higher than 42 at this time. -- Will Andrews <andrews@technologist.com> GCS/E/S @d- s+:+>+:- a--->+++ C++ UB++++ P+ L- E--- W+++ !N !o ?K w--- ?O M+ V-- PS+ PE++ Y+ PGP+>+++ t++ 5 X++ R+ tv+ b++>++++ DI+++ D+ G++>+++ e->++++ h! r-->+++ y? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200001292010.MAA04917>