ecore: fix typo.

SVN revision: 59835
This commit is contained in:
Cedric BAIL 2011-05-31 08:05:16 +00:00
parent 3fa85660f8
commit 5817ae601f
3 changed files with 4 additions and 4 deletions

View File

@ -208,5 +208,5 @@
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.

View 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);
/**

View 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))
{