From 37a646a98e1a04fd57a53c00b700236a74394999 Mon Sep 17 00:00:00 2001 From: Sanjeev BA Date: Tue, 14 Feb 2012 08:50:46 +0000 Subject: [PATCH] Fix typos in documentation #9. Signed-off-by: Sanjeev BA SVN revision: 67912 --- legacy/elementary/src/lib/elm_password.h | 4 ++-- legacy/elementary/src/lib/elm_photo.h | 2 +- legacy/elementary/src/lib/elm_photocam.h | 6 +++--- legacy/elementary/src/lib/elm_plug.h | 2 +- legacy/elementary/src/lib/elm_progressbar.h | 4 ++-- legacy/elementary/src/lib/elm_scroller.h | 10 +++++----- 6 files changed, 14 insertions(+), 14 deletions(-) mode change 100755 => 100644 legacy/elementary/src/lib/elm_plug.h diff --git a/legacy/elementary/src/lib/elm_password.h b/legacy/elementary/src/lib/elm_password.h index 0d1acfdd61..5aba589b93 100644 --- a/legacy/elementary/src/lib/elm_password.h +++ b/legacy/elementary/src/lib/elm_password.h @@ -27,14 +27,14 @@ EAPI Eina_Bool elm_password_show_last_get(void); * * This enables or disables show last setting of password mode. * - * @param password_show_last If EINA_TRUE enable's last input show in password mode. + * @param password_show_last If EINA_TRUE enables last input show in password mode. * @see elm_password_show_last_timeout_set() * @ingroup Password_last_show */ EAPI void elm_password_show_last_set(Eina_Bool password_show_last); /** - * Get's the timeout value in last show password mode. + * Gets the timeout value in last show password mode. * * This gets the time out value for which the last input entered in password * mode will be visible. diff --git a/legacy/elementary/src/lib/elm_photo.h b/legacy/elementary/src/lib/elm_photo.h index 73be49c976..529e152b8f 100644 --- a/legacy/elementary/src/lib/elm_photo.h +++ b/legacy/elementary/src/lib/elm_photo.h @@ -74,7 +74,7 @@ EAPI void elm_photo_fill_inside_set(Evas_Object *obj, Eina_Bool fill); * the image will delete the existing content. * * @param obj The photo object. - * @param set To set of clear editablity. + * @param set To set of clear editability. */ EAPI void elm_photo_editable_set(Evas_Object *obj, Eina_Bool set); diff --git a/legacy/elementary/src/lib/elm_photocam.h b/legacy/elementary/src/lib/elm_photocam.h index 48d0c6b2bd..eac6ad0c79 100644 --- a/legacy/elementary/src/lib/elm_photocam.h +++ b/legacy/elementary/src/lib/elm_photocam.h @@ -45,7 +45,7 @@ typedef enum ELM_PHOTOCAM_ZOOM_MODE_MANUAL = 0, /**< Zoom controlled normally by elm_photocam_zoom_set */ ELM_PHOTOCAM_ZOOM_MODE_AUTO_FIT, /**< Zoom until photo fits in photocam */ ELM_PHOTOCAM_ZOOM_MODE_AUTO_FILL, /**< Zoom until photo fills photocam */ - ELM_PHOTOCAM_ZOOM_MODE_AUTO_FIT_IN, /**< Unzoom until photo fits in photocam */ + ELM_PHOTOCAM_ZOOM_MODE_AUTO_FIT_IN, /**< Zoom in until photo fits in photocam */ ELM_PHOTOCAM_ZOOM_MODE_LAST } Elm_Photocam_Zoom_Mode; @@ -92,7 +92,7 @@ EAPI const char *elm_photocam_file_get(const Evas_Object *obj); * This sets the zoom level. 1 will be 1:1 pixel for pixel. 2 will be 2:1 * (that is 2x2 photo pixels will display as 1 on-screen pixel). 4:1 will be * 4x4 photo pixels as 1 screen pixel, and so on. The @p zoom parameter must - * be greater than 0. It is usggested to stick to powers of 2. (1, 2, 4, 8, + * be greater than 0. It is suggested to stick to powers of 2. (1, 2, 4, 8, * 16, 32, etc.). */ EAPI void elm_photocam_zoom_set(Evas_Object *obj, double zoom); @@ -106,7 +106,7 @@ EAPI void elm_photocam_zoom_set(Evas_Object *obj, double zoom) * This returns the current zoom level of the photocam object. Note that if * you set the fill mode to other than ELM_PHOTOCAM_ZOOM_MODE_MANUAL * (which is the default), the zoom level may be changed at any time by the - * photocam object itself to account for photo size and photocam viewpoer + * photocam object itself to account for photo size and photocam viewport * size. * * @see elm_photocam_zoom_set() diff --git a/legacy/elementary/src/lib/elm_plug.h b/legacy/elementary/src/lib/elm_plug.h old mode 100755 new mode 100644 index 634e9af44e..9cc6167db6 --- a/legacy/elementary/src/lib/elm_plug.h +++ b/legacy/elementary/src/lib/elm_plug.h @@ -34,7 +34,7 @@ EAPI Evas_Object *elm_plug_add(Evas_Object *parent); * @param ee_target The Ecore_Evas containing the canvas in which the new image object will live. * @param svcname The service name to connect to set up by the socket. * @param svcnum The service number to connect to (set up by socket). - * @param svcsys Booleain to set if the service is a system one or not (set up by socket). + * @param svcsys Boolean to set if the service is a system one or not (set up by socket). * @return (@c EINA_TRUE = success, @c EINA_FALSE = error) * * diff --git a/legacy/elementary/src/lib/elm_progressbar.h b/legacy/elementary/src/lib/elm_progressbar.h index 2104924edb..8ec98dbf95 100644 --- a/legacy/elementary/src/lib/elm_progressbar.h +++ b/legacy/elementary/src/lib/elm_progressbar.h @@ -33,7 +33,7 @@ * "pulse" effect is available) * * Default text parts of the progressbar widget that you can use for are: - * @li "default" - Label of the progressabar + * @li "default" - Label of the progressbar * * Default contents parts of the progressbar widget that you can use for are: * @li "icon" - An icon of the progressbar @@ -195,7 +195,7 @@ EAPI Evas_Coord elm_progressbar_span_size_get(const Evas_Objec * area to be hidden completely. If not, it'll set the format * string for the units label's @b text. The units label is * provided a floating point value, so the units text is up display - * at most one floating point falue. Note that the units label is + * at most one floating point value. Note that the units label is * optional. Use a format string such as "%1.2f meters" for * example. * diff --git a/legacy/elementary/src/lib/elm_scroller.h b/legacy/elementary/src/lib/elm_scroller.h index 6356ff1410..1d671741d9 100644 --- a/legacy/elementary/src/lib/elm_scroller.h +++ b/legacy/elementary/src/lib/elm_scroller.h @@ -18,10 +18,10 @@ * @li "scroll,drag,start" - dragging the contents around has started * @li "scroll,drag,stop" - dragging the contents around has stopped * @note The "scroll,anim,*" and "scroll,drag,*" signals are only emitted by - * user intervetion. + * user intervention. * - * @note When Elemementary is in embedded mode the scrollbars will not be - * dragable, they appear merely as indicators of how much has been scrolled. + * @note When Elementary is in embedded mode the scrollbars will not be + * draggable, they appear merely as indicators of how much has been scrolled. * @note When Elementary is in desktop mode the thumbscroll(a.k.a. * fingerscroll) won't work. * @@ -229,7 +229,7 @@ EAPI void elm_scroller_page_size_set(Evas_Object *obj, E * * @see elm_scroller_last_page_get() * @see elm_scroller_page_show() - * @see elm_scroller_page_brint_in() + * @see elm_scroller_page_bring_in() */ EAPI void elm_scroller_current_page_get(const Evas_Object *obj, int *h_pagenumber, int *v_pagenumber); @@ -245,7 +245,7 @@ EAPI void elm_scroller_current_page_get(const Evas_Objec * * @see elm_scroller_current_page_get() * @see elm_scroller_page_show() - * @see elm_scroller_page_brint_in() + * @see elm_scroller_page_bring_in() */ EAPI void elm_scroller_last_page_get(const Evas_Object *obj, int *h_pagenumber, int *v_pagenumber);