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
18 lines
620 B
C++
18 lines
620 B
C++
diff -u pbmOp.cpp.orig pbmOp.cpp
|
|
--- pbmOp.cpp.orig Tue May 19 05:13:52 1998
|
|
+++ pbmOp.cpp Thu Oct 30 21:42:04 2003
|
|
@@ -74,10 +74,10 @@
|
|
void pbmOp::setTerm()
|
|
{
|
|
// get options
|
|
- string size = fontSize->currentText();
|
|
- string colormode = colorMode->currentText();
|
|
- string hSize = horizSize->text();
|
|
- string vSize = vertSize->text();
|
|
+ string size = fontSize->currentText().ascii();
|
|
+ string colormode = colorMode->currentText().ascii();
|
|
+ string hSize = horizSize->text().ascii();
|
|
+ string vSize = vertSize->text().ascii();
|
|
|
|
gnuInt->setTermPBMFontSize(size);
|
|
gnuInt->setTermPBMColormode(colormode);
|