Fix zathura_link_destination_type_t misspelling

This commit is contained in:
Glen Winters 2012-05-28 04:20:47 -07:00 committed by Moritz Lipp
parent 365dc9a66e
commit 65856538d5

View file

@ -140,7 +140,7 @@ typedef enum zathura_link_type_e
ZATHURA_LINK_NAMED /**< Links to an external source */ ZATHURA_LINK_NAMED /**< Links to an external source */
} zathura_link_type_t; } zathura_link_type_t;
typedef enum zathura_link_destionation_type_e typedef enum zathura_link_destination_type_e
{ {
ZATHURA_LINK_DESTINATION_UNKNOWN, ZATHURA_LINK_DESTINATION_UNKNOWN,
ZATHURA_LINK_DESTINATION_XYZ, ZATHURA_LINK_DESTINATION_XYZ,
@ -152,11 +152,11 @@ typedef enum zathura_link_destionation_type_e
ZATHURA_LINK_DESTINATION_FITBH, ZATHURA_LINK_DESTINATION_FITBH,
ZATHURA_LINK_DESTINATION_FITBV, ZATHURA_LINK_DESTINATION_FITBV,
ZATHURA_LINK_DESTINATION_NAMED ZATHURA_LINK_DESTINATION_NAMED
} zathura_link_destionation_type_t; } zathura_link_destination_type_t;
typedef struct zathura_link_target_s typedef struct zathura_link_target_s
{ {
zathura_link_destionation_type_t destination_type; zathura_link_destination_type_t destination_type;
char* value; /**< Value */ char* value; /**< Value */
unsigned int page_number; /**< Page number */ unsigned int page_number; /**< Page number */
double left; /**< Left coordinate */ double left; /**< Left coordinate */