diff options
author | JinYong Park <j4939.park@samsung.com> | 2017-11-01 13:08:58 +0900 |
---|---|---|
committer | Jean-Philippe Andre <jp.andre@samsung.com> | 2017-11-01 13:08:58 +0900 |
commit | a1935164feea7f94be70477b7787973d404c4100 (patch) | |
tree | 0c19927159b54722498cd3a2fa400a17e0a6518c /src | |
parent | b44889305a3bb5e48bdfed9c80d690f6276c7493 (diff) |
Eet: fix wrong doxygen definition
Summary:
Eet_Image_Encoding and Eet_Colorclass is from enumeration in Emile,
but it's definition is typedef, not enum.
It makes broken link like below webpage.
https://docs.enlightenment.org/efl/current/group__Eet__File__Image__Group.html
In above page, Eet_Image_Encoding is not linked.
So doxygen documentation should be changed to typedef.
Reviewers: cedric, jpeg, myoungwoon, conr2d
Differential Revision: https://phab.enlightenment.org/D5411
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/eet/Eet.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/eet/Eet.h b/src/lib/eet/Eet.h index 147249b895..60547bbd4a 100644 --- a/src/lib/eet/Eet.h +++ b/src/lib/eet/Eet.h | |||
@@ -478,7 +478,7 @@ typedef enum _Eet_File_Mode | |||
478 | } Eet_File_Mode; /**< Modes that a file can be opened. */ | 478 | } Eet_File_Mode; /**< Modes that a file can be opened. */ |
479 | 479 | ||
480 | /** | 480 | /** |
481 | * @enum Eet_Image_Encoding | 481 | * @typedef Eet_Image_Encoding |
482 | * Specify lossy encoding for image | 482 | * Specify lossy encoding for image |
483 | * @since 1.10 | 483 | * @since 1.10 |
484 | */ | 484 | */ |
@@ -492,7 +492,7 @@ typedef Emile_Image_Encoding Eet_Image_Encoding; | |||
492 | #define EET_IMAGE_ETC1_ALPHA EMILE_IMAGE_ETC1_ALPHA | 492 | #define EET_IMAGE_ETC1_ALPHA EMILE_IMAGE_ETC1_ALPHA |
493 | 493 | ||
494 | /** | 494 | /** |
495 | * @enum Eet_Colorspace | 495 | * @typedef Eet_Colorspace |
496 | * Specify colorspace for image | 496 | * Specify colorspace for image |
497 | * @since 1.10 | 497 | * @since 1.10 |
498 | */ | 498 | */ |