mirror of
https://git.pwmt.org/pwmt/zathura.git
synced 2024-11-10 23:24:24 +01:00
Fix return type of callbacks
Signed-off-by: Sebastian Ramacher <sebastian+dev@ramacher.at>
This commit is contained in:
parent
be717529c2
commit
9ee80714d4
@ -459,7 +459,7 @@ error_ret:
|
||||
return false;
|
||||
}
|
||||
|
||||
bool
|
||||
gboolean
|
||||
cb_view_resized(GtkWidget* UNUSED(widget), GtkAllocation* UNUSED(allocation), zathura_t* zathura)
|
||||
{
|
||||
if (zathura == NULL || zathura->document == NULL) {
|
||||
|
@ -146,7 +146,7 @@ bool cb_password_dialog(GtkEntry* entry, void* dialog);
|
||||
* @param zathura Zathura session
|
||||
* @return true if signal has been handled successfully
|
||||
*/
|
||||
bool cb_view_resized(GtkWidget* widget, GtkAllocation* allocation, zathura_t* zathura);
|
||||
gboolean cb_view_resized(GtkWidget* widget, GtkAllocation* allocation, zathura_t* zathura);
|
||||
|
||||
/**
|
||||
* Emitted when the 'recolor' setting is changed
|
||||
|
Loading…
Reference in New Issue
Block a user