Remove deprecated scale

All plugins have been fixed.

Signed-off-by: Sebastian Ramacher <sebastian+dev@ramacher.at>
This commit is contained in:
Sebastian Ramacher 2018-02-25 11:10:22 +01:00
parent 2106afb933
commit 96d3561fc9
2 changed files with 2 additions and 5 deletions

View file

@ -114,7 +114,7 @@ zathura_link_target_t
zathura_link_get_target(zathura_link_t* link) zathura_link_get_target(zathura_link_t* link)
{ {
if (link == NULL) { if (link == NULL) {
zathura_link_target_t target = { 0, NULL, 0, 0, 0, 0, 0, { 0 } }; zathura_link_target_t target = { 0, NULL, 0, 0, 0, 0, 0, 0 };
return target; return target;
} }

View file

@ -179,10 +179,7 @@ typedef struct zathura_link_target_s
double right; /**< Right coordinate */ double right; /**< Right coordinate */
double top; /**< Top coordinate */ double top; /**< Top coordinate */
double bottom; /**< Bottom coordinate */ double bottom; /**< Bottom coordinate */
union { double zoom; /**< Zoom */
double DEPRECATED(scale); /**< @deprecated Scale */
double zoom; /**< Zoom */
};
} zathura_link_target_t; } zathura_link_target_t;
/** /**