Fresco/Berlin/src GraphDebugger.cc,1.5,1.6 GraphicDictionary.cc,1.3,1.4 PNG.cc,1.14,1.15 ServerImpl.cc,1.13,1.14

Tobias Hunger <[email protected]> Tue, 13 Jan 2004 23:35:13 +0100
Newsgroups gmane.comp.video.fresco.cvs
Message-ID <[email protected]>
Update of /cvs/fresco/Fresco/Berlin/src
In directory purcel:/tmp/cvs-serv11097/Berlin/src

Modified Files:
	GraphDebugger.cc GraphicDictionary.cc PNG.cc ServerImpl.cc 
Log Message:
Typo fixes submitted by cow.


Index: GraphDebugger.cc
===================================================================
RCS file: /cvs/fresco/Fresco/Berlin/src/GraphDebugger.cc,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- GraphDebugger.cc	29 Dec 2003 08:43:08 -0000	1.5
+++ GraphDebugger.cc	13 Jan 2004 22:34:21 -0000	1.6
@@ -178,7 +178,7 @@
      ++i)
     if (hash == i->hash &&
         g->_is_equivalent(i->graphic))
-        return *i; // we allready know this one
+        return *i; // we already know this one
 
     // the graphic is unknown: register it and return a reference to it.
     my_known_graphics.push_back(

Index: GraphicDictionary.cc
===================================================================
RCS file: /cvs/fresco/Fresco/Berlin/src/GraphicDictionary.cc,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- GraphicDictionary.cc	29 Dec 2003 08:43:08 -0000	1.3
+++ GraphicDictionary.cc	13 Jan 2004 22:34:21 -0000	1.4
@@ -125,7 +125,7 @@
 
     Prague::Guard<Prague::Mutex> guard(my_mutex);
 
-    // Is the Graphic allready known?
+    // Is the Graphic already known?
     dictionary_type::iterator i(find_if(my_dictionary.begin(),
                     my_dictionary.end(),
                     word_equal(g, p)));

Index: PNG.cc
===================================================================
RCS file: /cvs/fresco/Fresco/Berlin/src/PNG.cc,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -d -r1.14 -r1.15
--- PNG.cc	29 Dec 2003 08:43:09 -0000	1.14
+++ PNG.cc	13 Jan 2004 22:34:21 -0000	1.15
@@ -239,7 +239,7 @@
     break;
     default:
     std::cerr << "PNG doesn't know number of channels in this "
-          << "colour type." << std::endl;
+          << "color type." << std::endl;
     my_rinfo->channels = 1;
     }
     my_rinfo->rowbytes = info.width * info.depth * my_rinfo->channels / 8;

Index: ServerImpl.cc
===================================================================
RCS file: /cvs/fresco/Fresco/Berlin/src/ServerImpl.cc,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- ServerImpl.cc	29 Dec 2003 08:43:09 -0000	1.13
+++ ServerImpl.cc	13 Jan 2004 22:34:21 -0000	1.14
@@ -69,7 +69,7 @@
   throw (SecurityException, SingletonFailureException)
 {
   Prague::Guard<Mutex> guard(my_mutex);
-  // test wether the name is allready in use:
+  // test whether the name is already in use:
   smap_t::iterator p = my_singletons.find(name);
   if (p != my_singletons.end()) throw SingletonFailureException();
   else my_singletons[name] = singleton;