blob: 5bbadac00eeb8a3ad718046785bff6a2bd620fde (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
--- libjasper/include/jasper/jas_types.h.old 2004-08-20 22:27:33.831853344 +0200
+++ libjasper/include/jasper/jas_types.h 2004-08-20 22:27:56.952338496 +0200
@@ -178,7 +178,7 @@
#endif
-#if defined(HAVE_STDINT_H)
+#if defined(HAVE_STDINT_H) || defined (_STDINT_H)
/*
* The C language implementation does correctly provide the standard header
* file "stdint.h".
--- src/Plot2DSurface.cc.old 2004-08-20 22:28:48.961431912 +0200
+++ src/Plot2DSurface.cc 2004-08-20 22:57:09.291942384 +0200
@@ -195,7 +195,7 @@
// kdDebug()<<"a = "<<a[j-1+NX*(i-1)]<<endl;
// kdDebug()<<" color value ("<<i<<"/"<<j<<") = "<<value<<endl;
- QBrush brush(getColor(value,palette),(Qt::BrushStyle)brush);
+ QBrush brush(getColor(value,palette)/*,(Qt::BrushStyle)brush*/);
p->setBrush(brush);
if(mesh)
p->setPen( Qt::black );
|