summaryrefslogtreecommitdiff
path: root/rust/src/interaction.rs
diff options
context:
space:
mode:
authorMason Reed <mason@vector35.com>2025-05-03 23:15:17 -0400
committerMason Reed <35282038+emesare@users.noreply.github.com>2025-05-12 17:45:24 -0400
commit6264254065bbae9d89f51cf3330379b7ace09592 (patch)
tree9ece1d1739215c2faef2d808ef4fdc019ad527fa /rust/src/interaction.rs
parentc3fdda9727f5507818e3f55576ad32215a22b0f9 (diff)
[Rust] Return `String` instead of `BnString` for cases where lossy conversion can be tolerated
Still need to go and audit all usage, but realistically the most important places to give the user control are with symbols, where the data can come from non utf8 sources This is still incomplete, I just looked for usage of -> BnString so any other variant was omitted.
Diffstat (limited to 'rust/src/interaction.rs')
-rw-r--r--rust/src/interaction.rs12
1 files changed, 6 insertions, 6 deletions
diff --git a/rust/src/interaction.rs b/rust/src/interaction.rs
index 1546bc5a..4a74127b 100644
--- a/rust/src/interaction.rs
+++ b/rust/src/interaction.rs
@@ -92,8 +92,8 @@ pub fn get_open_filename_input(prompt: &str, extension: &str) -> Option<PathBuf>
return None;
}
- let string = unsafe { BnString::from_raw(value) };
- Some(PathBuf::from(string.as_str()))
+ let path = unsafe { BnString::into_string(value) };
+ Some(PathBuf::from(path))
}
pub fn get_save_filename_input(
@@ -115,8 +115,8 @@ pub fn get_save_filename_input(
return None;
}
- let string = unsafe { BnString::from_raw(value) };
- Some(PathBuf::from(string.as_str()))
+ let path = unsafe { BnString::into_string(value) };
+ Some(PathBuf::from(path))
}
pub fn get_directory_name_input(prompt: &str, default_name: &str) -> Option<PathBuf> {
@@ -133,8 +133,8 @@ pub fn get_directory_name_input(prompt: &str, default_name: &str) -> Option<Path
return None;
}
- let string = unsafe { BnString::from_raw(value) };
- Some(PathBuf::from(string.as_str()))
+ let path = unsafe { BnString::into_string(value) };
+ Some(PathBuf::from(path))
}
pub type MessageBoxButtonSet = BNMessageBoxButtonSet;