diff options
author | Caleb Tennis <caleb@gentoo.org> | 2004-06-12 12:27:14 +0000 |
---|---|---|
committer | Caleb Tennis <caleb@gentoo.org> | 2004-06-12 12:27:14 +0000 |
commit | 776c703f502a73927f43641775dd80f8508e4283 (patch) | |
tree | 509e5e3b04d877786f35a01119d9b4e1897ca86a /kde-base/kdeaddons/files | |
parent | syntax fix (Manifest recommit) (diff) | |
download | gentoo-2-776c703f502a73927f43641775dd80f8508e4283.tar.gz gentoo-2-776c703f502a73927f43641775dd80f8508e4283.tar.bz2 gentoo-2-776c703f502a73927f43641775dd80f8508e4283.zip |
gcc34 patch readd
Diffstat (limited to 'kde-base/kdeaddons/files')
-rw-r--r-- | kde-base/kdeaddons/files/kdeaddons-3.2.3-gcc34.patch | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/kde-base/kdeaddons/files/kdeaddons-3.2.3-gcc34.patch b/kde-base/kdeaddons/files/kdeaddons-3.2.3-gcc34.patch new file mode 100644 index 000000000000..75ab7123e372 --- /dev/null +++ b/kde-base/kdeaddons/files/kdeaddons-3.2.3-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) |