From cdebf436cf3353ab658a37d9e468f8bd0de6a19c Mon Sep 17 00:00:00 2001 From: David Walter Seikel Date: Sat, 24 Dec 2005 12:22:47 +0000 Subject: [PATCH] Fixup the FIXME's. SVN revision: 19283 --- legacy/ecore/src/lib/ecore/Ecore.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/legacy/ecore/src/lib/ecore/Ecore.h b/legacy/ecore/src/lib/ecore/Ecore.h index 78cd945356..dfbfc72ce1 100644 --- a/legacy/ecore/src/lib/ecore/Ecore.h +++ b/legacy/ecore/src/lib/ecore/Ecore.h @@ -74,12 +74,12 @@ extern "C" { }; typedef enum _Ecore_Fd_Handler_Flags Ecore_Fd_Handler_Flags; - enum _Ecore_Exe_Flags /* FIXME: flags for executing a child with its stdin and/or stdout piped back */ + enum _Ecore_Exe_Flags /* flags for executing a child with its stdin and/or stdout piped back */ { ECORE_EXE_PIPE_READ = 1, /**< Exe Pipe Read mask */ ECORE_EXE_PIPE_WRITE = 2, /**< Exe Pipe Write mask */ ECORE_EXE_PIPE_READ_LINE_BUFFERED = 4, /**< Reads are buffered until a newline and delivered 1 event per line */ - ECORE_EXE_RESPAWN = 8 /**< Exe is restarted if it dies */ + ECORE_EXE_RESPAWN = 8 /* FIXME: Exe is restarted if it dies */ }; typedef enum _Ecore_Exe_Flags Ecore_Exe_Flags;