Fresco/Berlin/include/Berlin Console.hh,1.33,1.34 QuadTree.hh,1.21,1.22
Tobias Hunger <[email protected]> Tue, 13 Jan 2004 23:35:10 +0100
| Newsgroups | gmane.comp.video.fresco.cvs |
|---|---|
| Message-ID | <[email protected]> |
Update of /cvs/fresco/Fresco/Berlin/include/Berlin
In directory purcel:/tmp/cvs-serv11097/Berlin/include/Berlin
Modified Files:
Console.hh QuadTree.hh
Log Message:
Typo fixes submitted by cow.
Index: Console.hh
===================================================================
RCS file: /cvs/fresco/Fresco/Berlin/include/Berlin/Console.hh,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -d -r1.33 -r1.34
--- Console.hh 29 Dec 2003 08:42:50 -0000 1.33
+++ Console.hh 13 Jan 2004 22:34:20 -0000 1.34
@@ -52,7 +52,7 @@
};
private:
typedef std::vector<Extension *> elist_t;
- //. Deletes this Console in its Destrcuctor.
+ //. Deletes this Console in its Destructor.
struct Reaper
{
~Reaper();
@@ -85,7 +85,7 @@
//. List available consoles (modules)
static void list_available(std::ostream &);
- //. Check whether a particular console (module) is avilable
+ //. Check whether a particular console (module) is available
static bool is_available(std::string const &console);
//. Sets up the graphics library. It gets passed the commandline
Index: QuadTree.hh
===================================================================
RCS file: /cvs/fresco/Fresco/Berlin/include/Berlin/QuadTree.hh,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -d -r1.21 -r1.22
--- QuadTree.hh 29 Dec 2003 08:42:50 -0000 1.21
+++ QuadTree.hh 13 Jan 2004 22:34:20 -0000 1.22
@@ -41,7 +41,7 @@
template <class T, class I>
class QTNode
{
- //. This structure is used to determine wether items can get pushed
+ //. This structure is used to determine whether items can get pushed
//. into subnodes.
struct move_down : std::unary_function<I, bool>
{
@@ -117,7 +117,7 @@
void adjust(int, int, T, T);
protected:
- //. Returns wether this node is a leaf of the QuadTree or not.
+ //. Returns whether this node is a leaf of the QuadTree or not.
bool leaf() const { return my_quadrants[0] == 0;}
//. Creates the quadrants if they were not allocated before.
void allocate();