ecore: fix typo.
authorCedric BAIL <cedric.bail@free.fr>
Tue, 31 May 2011 08:05:16 +0000 (08:05 +0000)
committerCedric BAIL <cedric.bail@free.fr>
Tue, 31 May 2011 08:05:16 +0000 (08:05 +0000)
SVN revision: 59835

legacy/ecore/ChangeLog
legacy/ecore/src/lib/ecore/Ecore.h
legacy/ecore/src/lib/ecore/ecore_pipe.c

index 34d9b51..45c2a93 100644 (file)
 
 2011-05-30  Cedric Bail
 
-       * Add ecore_pipe_freeze/thraw to suspend and restart watching the pipe
+       * Add ecore_pipe_freeze/thaw to suspend and restart watching the pipe
        inside the main loop.
index de62746..240acf6 100644 (file)
@@ -786,7 +786,7 @@ extern "C" {
    EAPI Eina_Bool    ecore_pipe_write(Ecore_Pipe *p, const void *buffer, unsigned int nbytes);
    EAPI void         ecore_pipe_write_close(Ecore_Pipe *p);
    EAPI void         ecore_pipe_read_close(Ecore_Pipe *p);
-   EAPI void         ecore_pipe_thraw(Ecore_Pipe *p);
+   EAPI void         ecore_pipe_thaw(Ecore_Pipe *p);
    EAPI void         ecore_pipe_freeze(Ecore_Pipe *p);
 
   /**
index a3fe7c9..b7b43b7 100644 (file)
@@ -368,7 +368,7 @@ ecore_pipe_read_close(Ecore_Pipe *p)
 }
 
 /**
- * Stop monitoring if necessary the pipe for reading. See ecore_pipe_thraw()
+ * Stop monitoring if necessary the pipe for reading. See ecore_pipe_thaw()
  * for monitoring it again.
  *
  * @param p The Ecore_Pipe object.
@@ -396,7 +396,7 @@ ecore_pipe_freeze(Ecore_Pipe *p)
  * @param p The Ecore_Pipe object.
  */
 EAPI void
-ecore_pipe_thraw(Ecore_Pipe *p)
+ecore_pipe_thaw(Ecore_Pipe *p)
 {
    if (!ECORE_MAGIC_CHECK(p, ECORE_MAGIC_PIPE))
      {