From 4a72b5505b4d48af08c680118979cc9abee19dab Mon Sep 17 00:00:00 2001
From: Martin Stjernholm <mast@lysator.liu.se>
Date: Fri, 31 Jan 2003 03:02:48 +0100
Subject: [PATCH] Some type fixes for Image.Color.Color.

Rev: lib/modules/_Image.pmod/module.pmod:1.33
---
 lib/modules/_Image.pmod/module.pmod | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/lib/modules/_Image.pmod/module.pmod b/lib/modules/_Image.pmod/module.pmod
index 31c6c7536e..0a118c5060 100644
--- a/lib/modules/_Image.pmod/module.pmod
+++ b/lib/modules/_Image.pmod/module.pmod
@@ -1,6 +1,6 @@
 #pike __REAL_VERSION__
 
-// $Id: module.pmod,v 1.32 2003/01/20 17:44:02 nilsson Exp $
+// $Id: module.pmod,v 1.33 2003/01/31 02:02:48 mast Exp $
 
 static constant fmts = ([
   "image/x-pnm" : "PNM",
@@ -256,8 +256,8 @@ Image.Image load(void|object|string file)
 //! @decl Image.Image filled_circle(int xd,int yd)
 //! @decl Image.Layer filled_circle_layer(int d)
 //! @decl Image.Layer filled_circle_layer(int xd,int yd)
-//! @decl Image.Layer filled_circle_layer(int d,Image.Color color)
-//! @decl Image.Layer filled_circle_layer(int xd,int yd,Image.Color color)
+//! @decl Image.Layer filled_circle_layer(int d,Image.Color.Color color)
+//! @decl Image.Layer filled_circle_layer(int xd,int yd,Image.Color.Color color)
 //! @decl Image.Layer filled_circle_layer(int d,int r,int g,int b)
 //! @decl Image.Layer filled_circle_layer(int xd,int yd,int r,int g,int b)
 //! @belongs Image
@@ -286,9 +286,9 @@ Image.Image filled_circle(int xd, void|int yd)
 }
 
 
-Image.Layer filled_circle_layer(int xd,int|Image.Color ...args)
+Image.Layer filled_circle_layer(int xd,int|Image.Color.Color ...args)
 {
-   Image.Color c;
+   Image.Color.Color c;
    int yd=0;
    switch (sizeof(args))
    {
-- 
GitLab