summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTravis Tilley <lv@gentoo.org>2004-04-29 03:15:47 +0000
committerTravis Tilley <lv@gentoo.org>2004-04-29 03:15:47 +0000
commit735cd6f76da099589fccbd4989bf9182770c5db2 (patch)
tree2793f897400632f7b814c68af4a2d288876a081b /kde-base/kdeaddons/files
parentupdated warning message (diff)
downloadhistorical-735cd6f76da099589fccbd4989bf9182770c5db2.tar.gz
historical-735cd6f76da099589fccbd4989bf9182770c5db2.tar.bz2
historical-735cd6f76da099589fccbd4989bf9182770c5db2.zip
gcc 3.4 fix
Diffstat (limited to 'kde-base/kdeaddons/files')
-rw-r--r--kde-base/kdeaddons/files/kdeaddons-3.2.2-gcc34.patch28
1 files changed, 28 insertions, 0 deletions
diff --git a/kde-base/kdeaddons/files/kdeaddons-3.2.2-gcc34.patch b/kde-base/kdeaddons/files/kdeaddons-3.2.2-gcc34.patch
new file mode 100644
index 000000000000..75ab7123e372
--- /dev/null
+++ b/kde-base/kdeaddons/files/kdeaddons-3.2.2-gcc34.patch
@@ -0,0 +1,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)