refactor(opener): rename to FailedToConvertPathToItemIdList (#2906)

This commit is contained in:
Tony
2025-08-10 18:52:54 +08:00
committed by GitHub
parent 4eb36b0ff5
commit a4b71a1992
2 changed files with 6 additions and 3 deletions
+3 -2
View File
@@ -31,8 +31,9 @@ pub enum Error {
Win32Error(#[from] windows::core::Error),
#[error("Path doesn't have a parent: {0}")]
NoParent(PathBuf),
#[error("Path is invalid: {0}")]
InvalidPath(PathBuf),
#[cfg(windows)]
#[error("Failed to convert path '{0}' to ITEMIDLIST")]
FailedToConvertPathToItemIdList(PathBuf),
#[error("Failed to convert path to file:// url")]
FailedToConvertPathToFileUrl,
#[error(transparent)]