Hello, I'm jiyoung choi.

It's the first time sending patch. haha :)

I found the simple typo.
1. At the description of list : algarism (x) ----> algorithm (o)
2. ~trunk/elementary/src/examples/ fileselector_entry_example.c
   line 8 : gcc -g file selector_entry_example.c -o file selector_entry_example 'pkg-config --cflags --libs elementary' (x)
   *** wrong word spacing (file selector) ***
   ----> gcc -g fileselector_entry_example.c -o fileselector_entry_example 'pkg-config --cflags --libs elementary' (o)

I fixed these 2 typo.
So I want you to check this patch.



SVN revision: 83707
This commit is contained in:
Jihoon Kim 2013-02-07 07:26:45 +00:00
parent fb6356fc58
commit 27617917a9
2 changed files with 7 additions and 7 deletions

View File

@ -5,7 +5,7 @@
* See stdout/stderr for output. Compile with:
*
* @verbatim
* gcc -g file selector_entry_example.c -o file selector_entry_example `pkg-config --cflags --libs elementary`
* gcc -g fileselector_entry_example.c -o fileselector_entry_example `pkg-config --cflags --libs elementary`
* @endverbatim
*/

View File

@ -244,12 +244,12 @@ enum
typedef enum
{
ELM_CLOCK_EDIT_DEFAULT = 0, /**< Default value. Means that all digits are editable, when in edition mode. */
ELM_CLOCK_EDIT_HOUR_DECIMAL = 1 << 0, /**< Decimal algarism of hours value should be editable */
ELM_CLOCK_EDIT_HOUR_UNIT = 1 << 1, /**< Unit algarism of hours value should be editable */
ELM_CLOCK_EDIT_MIN_DECIMAL = 1 << 2, /**< Decimal algarism of minutes value should be editable */
ELM_CLOCK_EDIT_MIN_UNIT = 1 << 3, /**< Unit algarism of minutes value should be editable */
ELM_CLOCK_EDIT_SEC_DECIMAL = 1 << 4, /**< Decimal algarism of seconds value should be editable */
ELM_CLOCK_EDIT_SEC_UNIT = 1 << 5, /**< Unit algarism of seconds value should be editable */
ELM_CLOCK_EDIT_HOUR_DECIMAL = 1 << 0, /**< Decimal algorithm of hours value should be editable */
ELM_CLOCK_EDIT_HOUR_UNIT = 1 << 1, /**< Unit algorithm of hours value should be editable */
ELM_CLOCK_EDIT_MIN_DECIMAL = 1 << 2, /**< Decimal algorithm of minutes value should be editable */
ELM_CLOCK_EDIT_MIN_UNIT = 1 << 3, /**< Unit algorithm of minutes value should be editable */
ELM_CLOCK_EDIT_SEC_DECIMAL = 1 << 4, /**< Decimal algorithm of seconds value should be editable */
ELM_CLOCK_EDIT_SEC_UNIT = 1 << 5, /**< Unit algorithm of seconds value should be editable */
ELM_CLOCK_EDIT_ALL = (1 << 6) - 1 /**< All digits should be editable */
} Elm_Clock_Edit_Mode;