1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-24 00:45:52 +00:00

Fix for NEWGCC

Submitted by:	Will Andrews <andrews@technologist.com>
Obtained from:	http://www.psn.net/~andrews/qtkde/
This commit is contained in:
Chris Piazza 2000-01-31 05:16:18 +00:00
parent 78ce855324
commit c802125b33
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=25348
2 changed files with 22 additions and 0 deletions

11
games/pp/files/patch-ab Normal file
View File

@ -0,0 +1,11 @@
--- leiste.h Thu Apr 3 14:44:12 1997
+++ leiste.h.new Sat Jan 29 04:47:18 2000
@@ -38,7 +38,7 @@
class leiste : public QWidget {
-const int buttonHoehe=104, buttonBreite=140;
+const int buttonHoehe, buttonBreite;
//const QString picPfad2="./pic";
Q_OBJECT

11
games/pp/files/patch-ac Normal file
View File

@ -0,0 +1,11 @@
--- leiste.cpp Thu Apr 3 14:44:26 1997
+++ leiste.cpp.new Sat Jan 29 04:48:38 2000
@@ -32,7 +32,7 @@
leiste::leiste(QWidget *parent=0, const char *name=0,
QString picPfad="")
- :QWidget (parent, name)
+ :QWidget (parent, name), buttonHoehe(104), buttonBreite(140)
{
sci=0;
setMouseTracking (TRUE);