summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Kolesa <d.kolesa@samsung.com>2014-06-18 12:57:52 +0100
committerDaniel Kolesa <d.kolesa@samsung.com>2014-06-18 12:57:52 +0100
commitba74388f0af51cf19d748bdbb3da6fac1811334c (patch)
treebbbea123db810d0c3c84cb4b309dfc10b26c5495
parentf6998cde740d6151f1dc9645b6050ab00f7bbb10 (diff)
downloadelementary-ba74388f0af51cf19d748bdbb3da6fac1811334c.tar.gz
fix up some eo file documentation whitespace issues
-rw-r--r--src/lib/elc_hoversel.eo2
-rw-r--r--src/lib/elm_flipselector.eo2
-rw-r--r--src/lib/elm_gengrid.eo2
-rw-r--r--src/lib/elm_genlist.eo12
-rw-r--r--src/lib/elm_glview.eo2
-rw-r--r--src/lib/elm_interface_atspi_accessible.eo6
-rw-r--r--src/lib/elm_interface_atspi_component.eo2
-rw-r--r--src/lib/elm_list.eo2
-rw-r--r--src/lib/elm_panes.eo2
-rw-r--r--src/lib/elm_photo.eo2
-rw-r--r--src/lib/elm_progressbar.eo2
-rw-r--r--src/lib/elm_spinner.eo2
-rw-r--r--src/lib/elm_table.eo4
-rw-r--r--src/lib/elm_toolbar.eo2
14 files changed, 22 insertions, 22 deletions
diff --git a/src/lib/elc_hoversel.eo b/src/lib/elc_hoversel.eo
index 1eef4aa63..11a93ffb0 100644
--- a/src/lib/elc_hoversel.eo
+++ b/src/lib/elc_hoversel.eo
@@ -59,7 +59,7 @@ class Elm_Hoversel (Elm_Button, Evas_Selectable_Interface)
/*@
@brief Returns whether the hoversel is expanded.
- @return This will return @c EINA_TRUE if the hoversel is expanded or
+ @return This will return @c EINA_TRUE if the hoversel is expanded or
@c EINA_FALSE if it is not expanded.
@ingroup Hoversel */
diff --git a/src/lib/elm_flipselector.eo b/src/lib/elm_flipselector.eo
index 3983ebf7a..27ecf8624 100644
--- a/src/lib/elm_flipselector.eo
+++ b/src/lib/elm_flipselector.eo
@@ -184,7 +184,7 @@ class Elm_Flipselector (Elm_Layout)
Programmatically select the previous item of a flip selector
widget
- @note The selection will be animated. Also, if it reaches the
+ @note The selection will be animated. Also, if it reaches the
beginning of its list of member items, it will continue with the
last one backwards.
diff --git a/src/lib/elm_gengrid.eo b/src/lib/elm_gengrid.eo
index e6153c3df..73dbc84c5 100644
--- a/src/lib/elm_gengrid.eo
+++ b/src/lib/elm_gengrid.eo
@@ -156,7 +156,7 @@ class Elm_Gengrid (Elm_Layout, Elm_Interface_Scrollable, Evas_Clickable_Interfac
- ELM_OBJECT_SELECT_MODE_DEFAULT : Items will only call their selection func and
callback when first becoming selected. Any further clicks will
do nothing, unless you set always select mode.
- - ELM_OBJECT_SELECT_MODE_ALWAYS : This means that, even if selected,
+ - ELM_OBJECT_SELECT_MODE_ALWAYS : This means that, even if selected,
every click will make the selected callbacks be called.
- ELM_OBJECT_SELECT_MODE_NONE : This will turn off the ability to select items
entirely and they will neither appear selected nor call selected
diff --git a/src/lib/elm_genlist.eo b/src/lib/elm_genlist.eo
index db380149f..3e70d683d 100644
--- a/src/lib/elm_genlist.eo
+++ b/src/lib/elm_genlist.eo
@@ -48,7 +48,7 @@ class Elm_Genlist (Elm_Layout, Elm_Interface_Scrollable, Evas_Clickable_Interfac
- ELM_OBJECT_SELECT_MODE_DEFAULT : Items will call their selection func and
callback once when first becoming selected. Any further clicks will
do nothing, unless you set always select mode.
- - ELM_OBJECT_SELECT_MODE_ALWAYS : This means that, even if selected,
+ - ELM_OBJECT_SELECT_MODE_ALWAYS : This means that, even if selected,
every click will make the selected callbacks be called.
- ELM_OBJECT_SELECT_MODE_NONE : This will turn off the ability to select items
entirely and they will neither appear selected nor call selected
@@ -697,20 +697,20 @@ class Elm_Genlist (Elm_Layout, Elm_Interface_Scrollable, Evas_Clickable_Interfac
<dt>FNM_NOESCAPE</dt>
<dd>If this flag is set, treat backslash as an ordinary character, instead of an escape character.</dd>
<dt>FNM_PATHNAME</dt>
- <dd>If this flag is set, match a slash in string only with a slash in pattern and not by an asterisk (*)
- or a question mark (?) metacharacter, nor by a bracket expression ([]) containing a slash.</dd>
+ <dd>If this flag is set, match a slash in string only with a slash in pattern and not by an asterisk (*)
+ or a question mark (?) metacharacter, nor by a bracket expression ([]) containing a slash.</dd>
<dt>FNM_PERIOD</dt>
<dd>If this flag is set, a leading period in string has to be matched exactly by a period in pattern.
- A period is considered to be leading if it is the first character in string, or if both
+ A period is considered to be leading if it is the first character in string, or if both
FNM_PATHNAME is set and the period immediately follows a slash.</dd>
<dt>FNM_FILE_NAME</dt>
<dd>This is a GNU synonym for FNM_PATHNAME.</dd>
<dt>FNM_LEADING_DIR</dt>
<dd>If this flag (a GNU extension) is set, the pattern is considered to be matched if it matches an
- initial segment of string which is followed by a slash. This flag is mainly for the internal
+ initial segment of string which is followed by a slash. This flag is mainly for the internal
use of glibc and is only implemented in certain cases.</dd>
<dt>FNM_CASEFOLD</dt>
- <dd>If this flag (a GNU extension) is set, the pattern is matched case-insensitively.</dd>
+ <dd>If this flag (a GNU extension) is set, the pattern is matched case-insensitively.</dd>
</dl>
For more details see <a href=http://man7.org/linux/man-pages/man3/fnmatch.3.html>Linux Programmer's Manual. FNMATCH()</a>
diff --git a/src/lib/elm_glview.eo b/src/lib/elm_glview.eo
index bf25f7040..bc76eb769 100644
--- a/src/lib/elm_glview.eo
+++ b/src/lib/elm_glview.eo
@@ -14,7 +14,7 @@ class Elm_Glview (Elm_Widget)
Get the size of the glview.
Note that this function returns the actual image size of the
- glview. This means that when the scale policy is set to
+ glview. This means that when the scale policy is set to
ELM_GLVIEW_RESIZE_POLICY_SCALE, it'll return the non-scaled
size.
diff --git a/src/lib/elm_interface_atspi_accessible.eo b/src/lib/elm_interface_atspi_accessible.eo
index 6f9b2e197..0eaa60fb4 100644
--- a/src/lib/elm_interface_atspi_accessible.eo
+++ b/src/lib/elm_interface_atspi_accessible.eo
@@ -25,7 +25,7 @@ mixin Elm_Interface_Atspi_Accessible ()
protected relation_set {
get {
/*@ Gets an string describing ATSPI widget role name. Lists and
- * elements Should be free by a user. */
+ elements Should be free by a user. */
}
values {
Eina_List *relations;
@@ -52,7 +52,7 @@ mixin Elm_Interface_Atspi_Accessible ()
protected role_name {
get {
/*@ Gets human-readable string indentifying widget accessibility
- * role. */
+ role. */
}
values {
const char *role_name;
@@ -61,7 +61,7 @@ mixin Elm_Interface_Atspi_Accessible ()
protected attributes {
get {
/*@ Gets key-value pairs indentifying widget extra
- * attributes. Must be free by a user. */
+ attributes. Must be free by a user. */
}
values {
Eina_List *attributes;
diff --git a/src/lib/elm_interface_atspi_component.eo b/src/lib/elm_interface_atspi_component.eo
index d7ae0a8f2..4d9821345 100644
--- a/src/lib/elm_interface_atspi_component.eo
+++ b/src/lib/elm_interface_atspi_component.eo
@@ -36,7 +36,7 @@ mixin Elm_Interface_Atspi_Component ()
protected z_order {
get {
/*@ Gets the depth at which the component is shown in relation to
- * other components in the same container. */
+ other components in the same container. */
}
values {
int z_order;
diff --git a/src/lib/elm_list.eo b/src/lib/elm_list.eo
index 95650032f..d73550a51 100644
--- a/src/lib/elm_list.eo
+++ b/src/lib/elm_list.eo
@@ -44,7 +44,7 @@ class Elm_List (Elm_Layout, Elm_Interface_Scrollable)
- ELM_OBJECT_SELECT_MODE_DEFAULT : Items will only call their selection func and
callback when first becoming selected. Any further clicks will
do nothing, unless you set always select mode.
- - ELM_OBJECT_SELECT_MODE_ALWAYS : This means that, even if selected,
+ - ELM_OBJECT_SELECT_MODE_ALWAYS : This means that, even if selected,
every click will make the selected callbacks be called.
- ELM_OBJECT_SELECT_MODE_NONE : This will turn off the ability to select items
entirely and they will neither appear selected nor call selected
diff --git a/src/lib/elm_panes.eo b/src/lib/elm_panes.eo
index 955f87aaf..70102ca76 100644
--- a/src/lib/elm_panes.eo
+++ b/src/lib/elm_panes.eo
@@ -68,7 +68,7 @@ class Elm_Panes (Elm_Layout)
}
values {
Eina_Bool horizontal; /*@ Use @c EINA_TRUE to make @p obj to split panes
- horizontally ("top" and "bottom" contents). @c EINA_FALSE to make it
+ horizontally ("top" and "bottom" contents). @c EINA_FALSE to make it
vertically ("left" and "right" contents) */
}
}
diff --git a/src/lib/elm_photo.eo b/src/lib/elm_photo.eo
index 8cf130f0c..180b11a95 100644
--- a/src/lib/elm_photo.eo
+++ b/src/lib/elm_photo.eo
@@ -8,7 +8,7 @@ class Elm_Photo (Elm_Widget, Evas_Clickable_Interface, Evas_Draggable_Interface)
Set editability of the photo.
An editable photo can be dragged to or from, and can be cut or
- pasted too. Note that pasting an image or dropping an item on
+ pasted too. Note that pasting an image or dropping an item on
the image will delete the existing content. */
}
get {
diff --git a/src/lib/elm_progressbar.eo b/src/lib/elm_progressbar.eo
index 430591173..b8052b630 100644
--- a/src/lib/elm_progressbar.eo
+++ b/src/lib/elm_progressbar.eo
@@ -47,7 +47,7 @@ class Elm_Progressbar (Elm_Layout)
By default, progress bars will display values from the low to
high value boundaries. There are, though, contexts in which the
- progress of a given task is @b unknown. For such cases,
+ progress of a given task is @b unknown. For such cases,
one can set a progress bar widget to a "pulsing state", to give
the user an idea that some computation is being held, but
without exact progress values. In the default theme, it will
diff --git a/src/lib/elm_spinner.eo b/src/lib/elm_spinner.eo
index c1f674043..dfe8e1bfe 100644
--- a/src/lib/elm_spinner.eo
+++ b/src/lib/elm_spinner.eo
@@ -237,7 +237,7 @@ class Elm_Spinner (Elm_Layout)
"round" starting from value @p base. The default base for rounding is 0.
Example: round = 3, base = 2
- Values: ..., -2, 0, 2, 5, 8, 11, 14, ...
+ Values: ..., -2, 0, 2, 5, 8, 11, 14, ...
Example: round = 2, base = 5.5
Values: ..., -0.5, 1.5, 3.5, 5.5, 7.5, 9.5, 11.5, ...
diff --git a/src/lib/elm_table.eo b/src/lib/elm_table.eo
index 1d5216c28..6a431738c 100644
--- a/src/lib/elm_table.eo
+++ b/src/lib/elm_table.eo
@@ -15,13 +15,13 @@ class Elm_Table (Elm_Widget)
@brief Get the current table homogeneous mode.
@return A boolean to indicating if the layout is homogeneous in the table
- (EINA_TRUE = homogeneous, EINA_FALSE = no homogeneous)
+ (EINA_TRUE = homogeneous, EINA_FALSE = no homogeneous)
@ingroup Table */
}
values {
Eina_Bool homogeneous; /*@ A boolean to set if the layout is homogeneous in the
- table (EINA_TRUE = homogeneous, EINA_FALSE = no homogeneous) */
+ table (EINA_TRUE = homogeneous, EINA_FALSE = no homogeneous) */
}
}
padding {
diff --git a/src/lib/elm_toolbar.eo b/src/lib/elm_toolbar.eo
index 4741ea524..87e35ef04 100644
--- a/src/lib/elm_toolbar.eo
+++ b/src/lib/elm_toolbar.eo
@@ -68,7 +68,7 @@ class Elm_Toolbar (Elm_Widget, Elm_Interface_Scrollable)
- ELM_OBJECT_SELECT_MODE_DEFAULT : Items will only call their selection func and
callback when first becoming selected. Any further clicks will
do nothing, unless you set always select mode.
- - ELM_OBJECT_SELECT_MODE_ALWAYS : This means that, even if selected,
+ - ELM_OBJECT_SELECT_MODE_ALWAYS : This means that, even if selected,
every click will make the selected callbacks be called.
- ELM_OBJECT_SELECT_MODE_NONE : This will turn off the ability to select items
entirely and they will neither appear selected nor call selected