Fresco/Fresco-IDL/share/idl/Fresco Identifiable.idl,1.4,1.5 Server.idl,1.11,1.12 ToolKit.idl,1.19,1.20 Traversal.idl,1.9,1.10 Window.idl,1.9,1.10
Tobias Hunger <[email protected]> Tue, 13 Jan 2004 23:35:16 +0100
| Newsgroups | gmane.comp.video.fresco.cvs |
|---|---|
| Message-ID | <[email protected]> |
Update of /cvs/fresco/Fresco/Fresco-IDL/share/idl/Fresco
In directory purcel:/tmp/cvs-serv11097/Fresco-IDL/share/idl/Fresco
Modified Files:
Identifiable.idl Server.idl ToolKit.idl Traversal.idl
Window.idl
Log Message:
Typo fixes submitted by cow.
Index: Identifiable.idl
===================================================================
RCS file: /cvs/fresco/Fresco/Fresco-IDL/share/idl/Fresco/Identifiable.idl,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- Identifiable.idl 29 May 2002 06:57:01 -0000 1.4
+++ Identifiable.idl 13 Jan 2004 22:34:21 -0000 1.5
@@ -27,7 +27,7 @@
module Fresco
{
//. This interface is needed to test in a location transparent way
- //. wether two Objects are identical.
+ //. whether two objects are identical.
interface Identifiable
{
//. Returns true if the given Identifiable is identical with
Index: Server.idl
===================================================================
RCS file: /cvs/fresco/Fresco/Fresco-IDL/share/idl/Fresco/Server.idl,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- Server.idl 29 May 2002 06:57:01 -0000 1.11
+++ Server.idl 13 Jan 2004 22:34:21 -0000 1.12
@@ -58,7 +58,7 @@
//. SecurityException is raised if the client is not permitted to
//. install Singletons.
//. SingletonFailureException is raised whenever you try to add a
- //. singleton with a name that allready exists.
+ //. singleton with a name that already exists.
void set_singleton(in string name, in Object singleton)
raises (SecurityException, SingletonFailureException);
Index: ToolKit.idl
===================================================================
RCS file: /cvs/fresco/Fresco/Fresco-IDL/share/idl/Fresco/ToolKit.idl,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -d -r1.19 -r1.20
--- ToolKit.idl 12 Dec 2002 05:28:42 -0000 1.19
+++ ToolKit.idl 13 Jan 2004 22:34:21 -0000 1.20
@@ -50,7 +50,7 @@
//. informations on how to access complete widgets.
interface ToolKit : Kit
{
- //. A enumeration of possible frame types.
+ //. An enumeration of possible frame types.
enum FrameType { none, inset, outset, convex, concav, colored};
//. FIXME: What is this used for?
enum Direction { left, right, up, down};
@@ -75,13 +75,13 @@
DrawingState decorator(in Graphic gg);
//. Return a decorator around the given graphic which
//. sets the default color to the values given in r,g and b.
- //. The r,g and b value are exspected to be in between 0.0 and 1.0.
+ //. The r,g and b value are expected to be in between 0.0 and 1.0.
//. (0.0, 0.0, 0.0) is black, (1.0, 1.0, 1.0) is white.
Graphic rgb(in Graphic gg, in Coord r, in Coord g, in Coord b);
//. Set the default alpha value for the given graphic to
- //. the alpha value given in a. a is exspected to be in the range
+ //. the alpha value given in a. a is expected to be in the range
//. between 0.0 and 1.0. A value of 0.0 indicates that the graphic
- //. will be invisible, 1.0 will result in a untransparent graphic.
+ //. will be invisible, 1.0 will result in a non-transparent graphic.
Graphic alpha(in Graphic g, in Coord a);
//. Set the color of the light shining onto the given graphic.
//. The r, g and b values are interpreted in the same way as those
@@ -90,12 +90,12 @@
//. This decorates a given graphic by drawing a rectangular frame
//. around it.
//. The frame will have the given thickness and FrameSpec and will be
- //. filled with the current default color if 'filled' is set to true.
+ //. filled with the current default color if 'fill' is set to true.
Graphic frame(in Graphic g, in Coord thickness, in FrameSpec spec, in boolean fill);
//. This decorates a given graphic by drawing a triangular frame
//. around it.
//. The frame will have the given thickness and framespec and will be
- //. filled with the current default color if filled is set to true.
+ //. filled with the current default color if 'fill' is set to true.
Graphic triangle(in Graphic g,
in Coord thickness,
in FrameSpec spec,
@@ -104,7 +104,7 @@
//. This decorates a given graphic by drawing a diamond-shaped frame
//. around it.
//. The frame will have the given thickness and framespec and will be
- //. filled with the current default color if filled is set to true.
+ //. filled with the current default color if 'fill' is set to true.
Graphic diamond(in Graphic g,
in Coord thickness,
in FrameSpec spec,
@@ -144,7 +144,7 @@
//. Returns a graphic w pixels wide and h pixels high. It is
//. supposed to be used for video playback and similar things.
//. Don't use it if not absolutly necessary! Some DrawingKits
- //. will not be able to rotate a Convas and the Canvas definitly
+ //. will not be able to rotate a Canvas and the Canvas definitely
//. breaks device independence!
Canvas create_canvas(in PixelCoord w, in PixelCoord h) raises(SecurityException, CreationFailureException);
};
Index: Traversal.idl
===================================================================
RCS file: /cvs/fresco/Fresco/Fresco-IDL/share/idl/Fresco/Traversal.idl,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- Traversal.idl 29 May 2002 06:57:01 -0000 1.9
+++ Traversal.idl 13 Jan 2004 22:34:21 -0000 1.10
@@ -56,11 +56,11 @@
//. FIXME: Is this the right way to do it? We never use return values
//. for such things... -- tobias
boolean bounds(out Vertex lower, out Vertex upper, out Vertex origin);
- //. Calculate the current region and check wether that intersects with
+ //. Calculate the current region and check whether that intersects with
//. something relevant to the Traversal used (for example a clipping
//. region). The actual test depends on the Traversal used.
boolean intersects_allocation();
- //. Test wether the given Region intersects with something relevant to
+ //. Test whether the given Region intersects with something relevant to
//. the Traversal in use (for example a clipping region). The actual
//. test depends on the Traversal used.
boolean intersects_region(in Region r);
Index: Window.idl
===================================================================
RCS file: /cvs/fresco/Fresco/Fresco-IDL/share/idl/Fresco/Window.idl,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- Window.idl 29 May 2002 06:57:01 -0000 1.9
+++ Window.idl 13 Jan 2004 22:34:21 -0000 1.10
@@ -50,7 +50,7 @@
attribute Vertex size;
//. The layer of the window.
attribute Layout::Stage::Index layer;
- //. Show wether the window is mapped or not.
+ //. Show whether the window is mapped or not.
attribute boolean mapped;
};
};