blob: 75ab7123e372b106a2b4ee130c6d5a4d73b78b67 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
diff -udBbr kdeaddons-3.2.2/work/kdeaddons-3.2.2/noatun-plugins/synaescope/polygon.h kdeaddons-3.2.2-fix1/work/kdeaddons-3.2.2/noatun-plugins/synaescope/polygon.h
--- noatun-plugins/synaescope/polygon.h 2001-04-17 03:20:34.000000000 +0400
+++ noatun-plugins/synaescope/polygon.h 2004-04-24 09:51:48.355249296 +0400
@@ -25,6 +25,10 @@
template<class Pixel, class Combiner, int superSampleShift>
struct PolygonEngine : public Bitmap<Pixel>
{
+ using Bitmap<Pixel>::width;
+ using Bitmap<Pixel>::height;
+ using Bitmap<Pixel>::data;
+
PolygonEngine() : Bitmap<Pixel>(1) { }
#define super (1<<superSampleShift)
diff -udBbr kdeaddons-3.2.2/work/kdeaddons-3.2.2/noatun-plugins/tippercanoe/polygon.h kdeaddons-3.2.2-fix1/work/kdeaddons-3.2.2/noatun-plugins/tippercanoe/polygon.h
--- noatun-plugins/tippercanoe/polygon.h 2001-04-17 02:04:03.000000000 +0400
+++ noatun-plugins/tippercanoe/polygon.h 2004-04-24 09:58:30.243153048 +0400
@@ -23,6 +23,10 @@
template<class Pixel, class Combiner, int superSampleShift>
struct PolygonEngine : public Bitmap<Pixel> {
+ using Bitmap<Pixel>::width;
+ using Bitmap<Pixel>::height;
+ using Bitmap<Pixel>::data;
+
PolygonEngine() : Bitmap<Pixel>(1) { }
#define super (1<<superSampleShift)
|