Fix Pointer where to store => Pointer to store.
authorsanjeev <sanjeev@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Fri, 24 Feb 2012 06:05:31 +0000 (06:05 +0000)
committersanjeev <sanjeev@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Fri, 24 Feb 2012 06:05:31 +0000 (06:05 +0000)
Signed-off-by: Sanjeev BA <eflelev8@gmail.com>
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@68381 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

src/lib/elc_anchorview.h
src/lib/elm_diskselector.h
src/lib/elm_list.h
src/lib/elm_map.h
src/lib/elm_slider.h
src/lib/elm_spinner.h
src/lib/elm_web.h

index 1125d50..5e426f3 100644 (file)
@@ -167,9 +167,9 @@ EAPI void                        elm_anchorview_bounce_set(Evas_Object *obj, Ein
  * axis is reached scrolling.
  *
  * @param obj The anchorview object
- * @param h_bounce Pointer where to store the bounce state of the horizontal
+ * @param h_bounce Pointer to store the bounce state of the horizontal
  *                 axis
- * @param v_bounce Pointer where to store the bounce state of the vertical
+ * @param v_bounce Pointer to store the bounce state of the vertical
  *                 axis
  *
  * @see elm_scroller_bounce_get()
index d30b6f8..2015eb7 100644 (file)
@@ -177,9 +177,9 @@ EAPI void                   elm_diskselector_bounce_set(Evas_Object *obj, Eina_B
  * axis is reached scrolling.
  *
  * @param obj The diskselector object.
- * @param h_bounce Pointer where to store the bounce state of the horizontal
+ * @param h_bounce Pointer to store the bounce state of the horizontal
  * axis.
- * @param v_bounce Pointer where to store the bounce state of the vertical
+ * @param v_bounce Pointer to store the bounce state of the vertical
  * axis.
  *
  * @see elm_scroller_bounce_get()
@@ -195,8 +195,8 @@ EAPI void                   elm_diskselector_bounce_get(const Evas_Object *obj,
  * @see elm_diskselector_scroller_policy_get() for details.
  *
  * @param obj The diskselector object.
- * @param policy_h Pointer where to store horizontal scrollbar policy.
- * @param policy_v Pointer where to store vertical scrollbar policy.
+ * @param policy_h Pointer to store horizontal scrollbar policy.
+ * @param policy_v Pointer to store vertical scrollbar policy.
  *
  * @ingroup Diskselector
  */
index d71ded9..b348b2b 100644 (file)
@@ -283,9 +283,9 @@ EAPI void                         elm_list_bounce_set(Evas_Object *obj, Eina_Boo
  * axis is reached scrolling.
  *
  * @param obj The list object.
- * @param h_bounce Pointer where to store the bounce state of the horizontal
+ * @param h_bounce Pointer to store the bounce state of the horizontal
  * axis.
- * @param v_bounce Pointer where to store the bounce state of the vertical
+ * @param v_bounce Pointer to store the bounce state of the vertical
  * axis.
  *
  * @see elm_scroller_bounce_get()
@@ -321,8 +321,8 @@ EAPI void                         elm_list_scroller_policy_set(Evas_Object *obj,
  * @see elm_list_scroller_policy_get() for details.
  *
  * @param obj The list object.
- * @param policy_h Pointer where to store horizontal scrollbar policy.
- * @param policy_v Pointer where to store vertical scrollbar policy.
+ * @param policy_h Pointer to store horizontal scrollbar policy.
+ * @param policy_v Pointer to store vertical scrollbar policy.
  *
  * @ingroup List
  */
index 9a1fde4..e3d3540 100644 (file)
@@ -269,8 +269,8 @@ EAPI Elm_Map_Zoom_Mode     elm_map_zoom_mode_get(const Evas_Object *obj);
  * Get the current geographic coordinates of the map.
  *
  * @param obj The map object.
- * @param lon Pointer where to store longitude.
- * @param lat Pointer where to store latitude.
+ * @param lon Pointer to store longitude.
+ * @param lat Pointer to store latitude.
  *
  * This gets the current center coordinates of the map object. It can be
  * set by elm_map_geo_region_bring_in() and elm_map_geo_region_show().
@@ -403,8 +403,8 @@ EAPI Eina_Bool             elm_map_paused_markers_get(const Evas_Object *obj);
  * Get the information of downloading status.
  *
  * @param obj The map object.
- * @param try_num Pointer where to store number of tiles being downloaded.
- * @param finish_num Pointer where to store number of tiles successfully
+ * @param try_num Pointer to store number of tiles being downloaded.
+ * @param finish_num Pointer to store number of tiles successfully
  * downloaded.
  *
  * This gets the current downloading status for the map object, the number
@@ -423,8 +423,8 @@ EAPI void                  elm_map_utils_downloading_status_get(const Evas_Objec
  * @param y the coordinate.
  * @param size the size in pixels of the map.
  * The map is a square and generally his size is : pow(2.0, zoom)*256.
- * @param lon Pointer where to store the longitude that correspond to x.
- * @param lat Pointer where to store the latitude that correspond to y.
+ * @param lon Pointer to store the longitude that correspond to x.
+ * @param lat Pointer to store the latitude that correspond to y.
  *
  * @note Origin pixel point is the top left corner of the viewport.
  * Map zoom and size are taken on account.
@@ -444,9 +444,9 @@ EAPI void                  elm_map_utils_convert_coord_into_geo(const Evas_Objec
  * @param lat the latitude.
  * @param size the size in pixels of the map. The map is a square
  * and generally his size is : pow(2.0, zoom)*256.
- * @param x Pointer where to store the horizontal pixel coordinate that
+ * @param x Pointer to store the horizontal pixel coordinate that
  * correspond to the longitude.
- * @param y Pointer where to store the vertical pixel coordinate that
+ * @param y Pointer to store the vertical pixel coordinate that
  * correspond to the latitude.
  *
  * @note Origin pixel point is the top left corner of the viewport.
@@ -595,8 +595,8 @@ EAPI void                  elm_map_marker_remove(Elm_Map_Marker *marker);
  * Get the current coordinates of the marker.
  *
  * @param marker marker.
- * @param lat Pointer where to store the marker's latitude.
- * @param lon Pointer where to store the marker's longitude.
+ * @param lat Pointer to store the marker's latitude.
+ * @param lon Pointer to store the marker's longitude.
  *
  * These values are set when adding markers, with function
  * elm_map_marker_add().
@@ -1235,10 +1235,10 @@ EAPI void                  elm_map_route_color_set(Elm_Map_Route *route, int r,
  * Get the route color.
  *
  * @param route The route object.
- * @param r Pointer where to store the red channel value.
- * @param g Pointer where to store the green channel value.
- * @param b Pointer where to store the blue channel value.
- * @param a Pointer where to store the alpha channel value.
+ * @param r Pointer to store the red channel value.
+ * @param g Pointer to store the green channel value.
+ * @param b Pointer to store the blue channel value.
+ * @param a Pointer to store the alpha channel value.
  *
  * @see elm_map_route_color_set() for details.
  *
@@ -1296,8 +1296,8 @@ EAPI const char           *elm_map_name_address_get(const Elm_Map_Name *name);
  * Get the current coordinates of the name.
  *
  * @param name The name handle.
- * @param lat Pointer where to store the latitude.
- * @param lon Pointer where to store The longitude.
+ * @param lat Pointer to store the latitude.
+ * @param lon Pointer to store The longitude.
  *
  * This gets the coordinates of the @p name, created with one of the
  * conversion functions.
@@ -1342,10 +1342,10 @@ EAPI void                  elm_map_rotate_set(Evas_Object *obj, double degree, E
  * Get the rotate degree of the map
  *
  * @param obj The map object
- * @param degree Pointer where to store degrees from 0.0 to 360.0
+ * @param degree Pointer to store degrees from 0.0 to 360.0
  * to rotate around Z axis.
- * @param cx Pointer where to store rotation's center horizontal position.
- * @param cy Pointer where to store rotation's center vertical position.
+ * @param cx Pointer to store rotation's center horizontal position.
+ * @param cy Pointer to store rotation's center vertical position.
  *
  * @see elm_map_rotate_set() to set map rotation.
  *
index ad17af3..d2651fc 100644 (file)
@@ -287,8 +287,8 @@ EAPI void                         elm_slider_min_max_set(Evas_Object *obj, doubl
  * Get the minimum and maximum values of the slider.
  *
  * @param obj The slider object.
- * @param min Pointer where to store the minimum value.
- * @param max Pointer where to store the maximum value.
+ * @param min Pointer to store the minimum value.
+ * @param max Pointer to store the maximum value.
  *
  * @note If only one value is needed, the other pointer can be passed
  * as @c NULL.
index d7281ff..688f5df 100644 (file)
@@ -121,8 +121,8 @@ EAPI void        elm_spinner_min_max_set(Evas_Object *obj, double min, double ma
  * Get the minimum and maximum values of the spinner.
  *
  * @param obj The spinner object.
- * @param min Pointer where to store the minimum value.
- * @param max Pointer where to store the maximum value.
+ * @param min Pointer to store the minimum value.
+ * @param max Pointer to store the maximum value.
  *
  * @note If only one value is needed, the other pointer can be passed
  * as @c NULL.
index 1362570..abbe7c2 100644 (file)
@@ -257,7 +257,7 @@ typedef Evas_Object *(*Elm_Web_Dialog_Alert)(void *data, Evas_Object *obj, const
  * @li @p data User data pointer set when setting the hook function
  * @li @p obj The elm_web object requesting the new window
  * @li @p message The message to show in the confirm dialog
- * @li @p ret Pointer where to store the user selection. @c EINA_TRUE if
+ * @li @p ret Pointer to store the user selection. @c EINA_TRUE if
  * the user selected @c Ok, @c EINA_FALSE otherwise.
  *
  * The function should return the object representing the confirm dialog.
@@ -279,9 +279,9 @@ typedef Evas_Object *(*Elm_Web_Dialog_Confirm)(void *data, Evas_Object *obj, con
  * @li @p obj The elm_web object requesting the new window
  * @li @p message The message to show in the prompt dialog
  * @li @p def_value The default value to present the user in the entry
- * @li @p value Pointer where to store the value given by the user. Must
+ * @li @p value Pointer to store the value given by the user. Must
  * be a malloc'ed string or @c NULL if the user canceled the popup.
- * @li @p ret Pointer where to store the user selection. @c EINA_TRUE if
+ * @li @p ret Pointer to store the user selection. @c EINA_TRUE if
  * the user selected @c Ok, @c EINA_FALSE otherwise.
  *
  * The function should return the object representing the prompt dialog.
@@ -303,10 +303,10 @@ typedef Evas_Object *(*Elm_Web_Dialog_Prompt)(void *data, Evas_Object *obj, cons
  * @li @p obj The elm_web object requesting the new window
  * @li @p allows_multiple @c EINA_TRUE if multiple files can be selected.
  * @li @p accept_types Mime types accepted
- * @li @p selected Pointer where to store the list of malloc'ed strings
+ * @li @p selected Pointer to store the list of malloc'ed strings
  * containing the path to each file selected. Must be @c NULL if the file
  * dialog is canceled
- * @li @p ret Pointer where to store the user selection. @c EINA_TRUE if
+ * @li @p ret Pointer to store the user selection. @c EINA_TRUE if
  * the user selected @c Ok, @c EINA_FALSE otherwise.
  *
  * The function should return the object representing the file selector