mirror of
https://gitlab.gnome.org/GNOME/nautilus
synced 2024-11-05 16:04:31 +00:00
toolbar: rename function
This commit is contained in:
parent
745652a9f3
commit
733c22e20f
1 changed files with 2 additions and 2 deletions
|
@ -393,7 +393,7 @@ should_hide_operations_button (NautilusToolbar *self)
|
|||
}
|
||||
|
||||
static gboolean
|
||||
remove_finished_operations (NautilusToolbar *self)
|
||||
on_remove_finished_operations_timeout (NautilusToolbar *self)
|
||||
{
|
||||
nautilus_progress_info_manager_remove_finished_or_cancelled_infos (self->priv->progress_manager);
|
||||
if (should_hide_operations_button (self)) {
|
||||
|
@ -423,7 +423,7 @@ schedule_remove_finished_operations (NautilusToolbar *self)
|
|||
if (self->priv->remove_finished_operations_timeout_id == 0) {
|
||||
self->priv->remove_finished_operations_timeout_id =
|
||||
g_timeout_add_seconds (REMOVE_FINISHED_OPERATIONS_TIEMOUT,
|
||||
(GSourceFunc) remove_finished_operations,
|
||||
(GSourceFunc) on_remove_finished_operations_timeout,
|
||||
self);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue