diff --git a/src/freedesktop.rs b/src/freedesktop.rs index 82471c2..86bdb5c 100644 --- a/src/freedesktop.rs +++ b/src/freedesktop.rs @@ -33,7 +33,7 @@ impl PlatformTrashContext { } } impl TrashContext { - pub(crate) fn delete_all_canonicalized(&self, full_paths: Vec) -> Result>, Error> { + pub(crate) fn delete_all_canonicalized(&self, full_paths: Vec, _with_info: bool) -> Result>, Error> { let home_trash = home_trash()?; let sorted_mount_points = get_sorted_mount_points()?; let home_topdir = home_topdir(&sorted_mount_points)?; diff --git a/src/windows.rs b/src/windows.rs index 7b97bef..f0b24d7 100644 --- a/src/windows.rs +++ b/src/windows.rs @@ -74,7 +74,7 @@ impl TrashContext { } /// Removes all files and folder paths recursively. - pub(crate) fn delete_all_canonicalized(&self, full_paths: Vec) -> Result>, Error> { + pub(crate) fn delete_all_canonicalized(&self, full_paths: Vec, _with_info: bool) -> Result>, Error> { self.delete_specified_canonicalized(full_paths) } }