diff --git a/legacy/emotion/COPYING-PLAIN b/legacy/emotion/COPYING-PLAIN index 376875e868..43872ad67a 100644 --- a/legacy/emotion/COPYING-PLAIN +++ b/legacy/emotion/COPYING-PLAIN @@ -21,7 +21,7 @@ You can do what you want with the source of this software - it doesn't matter. We still have it here for ourselves and it is open and free to use and download and play with. It can't be taken away. We don't really mind what you do with the source to your software. We would simply like to know that -you are using it - especially if it makes it to a commerical product. If you +you are using it - especially if it makes it to a commercial product. If you simply e-mail all the AUTHORS (see COPYING and AUTHORS files) telling us, and then make sure you include a paragraph or page in the manual for the product with the copyright notice and state that you used this software, we will be diff --git a/legacy/emotion/m4/efl_binary.m4 b/legacy/emotion/m4/efl_binary.m4 index 48c0b95a6e..b9c9fd16c5 100644 --- a/legacy/emotion/m4/efl_binary.m4 +++ b/legacy/emotion/m4/efl_binary.m4 @@ -4,9 +4,9 @@ dnl That code is public domain and can be freely used or copied. dnl Macro that check if a binary is built or not dnl Usage: EFL_ENABLE_BIN(binary[, ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]]) -dnl Call AC_SUBST(BINARY_PRG) (BINARY is the uppercase of binary, - being tranformed into _) -dnl Define have_binary (- is tranformed into _) -dnl Define conditional BUILD_BINARY (BINARY is the uppercase of binary, - being tranformed into _) +dnl Call AC_SUBST(BINARY_PRG) (BINARY is the uppercase of binary, - being transformed into _) +dnl Define have_binary (- is transformed into _) +dnl Define conditional BUILD_BINARY (BINARY is the uppercase of binary, - being transformed into _) AC_DEFUN([EFL_ENABLE_BIN], [ diff --git a/legacy/emotion/src/lib/Emotion.h b/legacy/emotion/src/lib/Emotion.h index 15051317c7..b17dbe9bf0 100644 --- a/legacy/emotion/src/lib/Emotion.h +++ b/legacy/emotion/src/lib/Emotion.h @@ -161,7 +161,7 @@ extern "C" { * happens immediately. There are also some signals to report changed states. * * Basically, once the object is created and initialized, a file will be set to - * it, and then it can be resized, moved, and controled by other Evas object + * it, and then it can be resized, moved, and controlled by other Evas object * functions. * * However, the decoding of the music and video occurs not in the Ecore main @@ -387,7 +387,7 @@ EAPI void emotion_object_position_set (Evas_Object *obj, double * @param obj The emotion object from which the position will be retrieved. * @return The position of the media file. * - * The position is returned as the number of seconds since the beggining of the + * The position is returned as the number of seconds since the beginning of the * media file. */ EAPI double emotion_object_position_get (const Evas_Object *obj); diff --git a/legacy/emotion/src/lib/emotion_smart.c b/legacy/emotion/src/lib/emotion_smart.c index a363efa037..fb32dfb85e 100644 --- a/legacy/emotion/src/lib/emotion_smart.c +++ b/legacy/emotion/src/lib/emotion_smart.c @@ -188,8 +188,8 @@ _emotion_module_close(Emotion_Video_Module *mod, void *video) if (mod->plugin->close && video) mod->plugin->close(mod, video); /* FIXME: we can't go dlclosing here as a thread still may be running from - * the module - this in theory will leak- but it shouldnt be too bad and - * mean that once a module is dlopened() it cant be closed - its refcount + * the module - this in theory will leak- but it shouldn't be too bad and + * mean that once a module is dlopened() it can't be closed - its refcount * will just keep going up */ } diff --git a/legacy/emotion/src/modules/gstreamer/emotion_gstreamer.c b/legacy/emotion/src/modules/gstreamer/emotion_gstreamer.c index 171218464d..faaaa7fd5e 100644 --- a/legacy/emotion/src/modules/gstreamer/emotion_gstreamer.c +++ b/legacy/emotion/src/modules/gstreamer/emotion_gstreamer.c @@ -391,7 +391,7 @@ em_file_open(const char *file, if (strncmp(file, "./", 2) == 0) file += 2; if (strstr(file, ":/") != NULL) - { /* We absolutly need file:///C:/ under Windows, so adding it here */ + { /* We absolutely need file:///C:/ under Windows, so adding it here */ eina_strbuf_append(sbuf, "/"); } else if (*file != '/') diff --git a/legacy/emotion/src/modules/vlc/TODO b/legacy/emotion/src/modules/vlc/TODO index 496805e2e8..64e724ad7c 100644 --- a/legacy/emotion/src/modules/vlc/TODO +++ b/legacy/emotion/src/modules/vlc/TODO @@ -3,7 +3,7 @@ # # Known bug -When changing video size at begining, there is sometimes SEGV in evas. +When changing video size at beginning, there is sometimes SEGV in evas. The plugin first load the movie with default geometry, wait for it inputThread from VLC to be launched and read the movie geometry. Then it stops vlc and start it again with known geometry and realloc frames. Plugin warn emotion that size changed using API func "_emotion_frame_resize" thru fd_write/fd_read socket.