mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-09-08 20:07:50 -04:00
41 lines
1.2 KiB
Plaintext
41 lines
1.2 KiB
Plaintext
$NetBSD: patch-aw,v 1.1 2004/02/18 23:09:03 kristerw Exp $
|
|
|
|
--- Client/Fillers.cc.orig Wed Feb 18 23:42:54 2004
|
|
+++ Client/Fillers.cc Wed Feb 18 23:43:51 2004
|
|
@@ -23,7 +23,7 @@
|
|
return RGB(r, g, b);
|
|
}
|
|
|
|
-FlatFiller::FlatFiller(int _color=0)
|
|
+FlatFiller::FlatFiller(int _color)
|
|
: Filler(ftFlat), color(_color)
|
|
{
|
|
CreateImage();
|
|
@@ -40,7 +40,7 @@
|
|
TileBuffer(im, ImageSize, ImageSize);
|
|
}
|
|
|
|
-CircleFiller::CircleFiller(int _circle_color=0, int _bg_color=0)
|
|
+CircleFiller::CircleFiller(int _circle_color, int _bg_color)
|
|
: TwoOptFiller(ftCircle, _circle_color, _bg_color)
|
|
{
|
|
CreateImage();
|
|
@@ -67,7 +67,7 @@
|
|
TileBuffer(im, R, R);
|
|
}
|
|
|
|
-CheckerFiller::CheckerFiller(int _white=0, int _black=0)
|
|
+CheckerFiller::CheckerFiller(int _white, int _black)
|
|
: TwoOptFiller(ftChecker, _white, _black)
|
|
{
|
|
CreateImage();
|
|
@@ -90,7 +90,7 @@
|
|
TileBuffer(im, R, R);
|
|
}
|
|
|
|
-PictureFiller::PictureFiller(int _NumPictures, Picture ** _pictures, int _ActualPicture=0)
|
|
+PictureFiller::PictureFiller(int _NumPictures, Picture ** _pictures, int _ActualPicture)
|
|
: Filler(ftPicture), pictures(_pictures), NumPictures(_NumPictures), ActualPicture(_ActualPicture)
|
|
{
|
|
CreateImage();
|