mirror of
https://git.pwmt.org/pwmt/zathura.git
synced 2025-01-16 02:55:50 +01:00
Remove deprecated scale
All plugins have been fixed. Signed-off-by: Sebastian Ramacher <sebastian+dev@ramacher.at>
This commit is contained in:
parent
2106afb933
commit
96d3561fc9
2 changed files with 2 additions and 5 deletions
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -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 DEPRECATED(scale); /**< @deprecated Scale */
|
|
||||||
double zoom; /**< Zoom */
|
double zoom; /**< Zoom */
|
||||||
};
|
|
||||||
} zathura_link_target_t;
|
} zathura_link_target_t;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue