mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-15 03:14:23 +00:00
7ad012e1d9
compilation on FreeBSD 4 with GCC 2.95.4: http://bento.freebsd.org/errorlogs/i386-4-latest/xgfe-2.1.log The patch below fixes this. During testing it on FreeBSD 4 and 5 with QT 3.3.1 I noticed that the Advanced -> Multiple Files and Advanced -> Multiple Functions dialogs were broken. I'm not sure if this is a new breakage with QT 3.3.1 or if I didn't notice these when testing the previous patch on FreeBSD 5 with QT 3.2.1. Anyway, these are also fixed and as a precaution PORTREVISION is bumped. The patch also adds SIZE info. PR: 64390 Submitted by: Marius Strobl <marius@alchemy.franken.de> Approved by: maintainer
28 lines
573 B
C++
28 lines
573 B
C++
--- xgfeMainData.cpp.orig Thu Oct 30 21:54:58 2003
|
|
+++ xgfeMainData.cpp Thu Oct 30 21:42:04 2003
|
|
@@ -34,10 +34,13 @@
|
|
#include <qpushbt.h>
|
|
#include <qlayout.h>
|
|
|
|
+#define QColor(i) (QColor)(i)
|
|
+#define QRgb(i) (QRgb)(i)
|
|
+
|
|
xgfeMainData::xgfeMainData
|
|
(
|
|
- QWidget* parent = 0,
|
|
- const char* name = 0
|
|
+ QWidget* parent,
|
|
+ const char* name
|
|
)
|
|
:
|
|
Inherited( parent, name, TRUE, WStyle_Customize | WStyle_NormalBorder
|
|
@@ -973,7 +976,7 @@
|
|
|
|
if (!f.isEmpty())
|
|
{
|
|
- temp = f;
|
|
+ temp = f.ascii();
|
|
gnuInt->setOutput(temp);
|
|
outputLabel->setText(f);
|
|
}
|