summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
Diffstat (limited to 'plugins')
-rw-r--r--plugins/dwarf/dwarf_export/src/lib.rs1
-rw-r--r--plugins/warp/src/plugin/create.rs1
2 files changed, 0 insertions, 2 deletions
diff --git a/plugins/dwarf/dwarf_export/src/lib.rs b/plugins/dwarf/dwarf_export/src/lib.rs
index 00a6175f..d1ac45ab 100644
--- a/plugins/dwarf/dwarf_export/src/lib.rs
+++ b/plugins/dwarf/dwarf_export/src/lib.rs
@@ -632,7 +632,6 @@ fn create_export_form(bv_arch: &str) -> Form {
form.add_field(FormInputField::SaveFileName {
prompt: "Save Location".to_string(),
extension: Some("Debug Files (*.dwo *.debug);;All Files (*)".to_string()),
- default_name: None,
default: None,
value: None,
});
diff --git a/plugins/warp/src/plugin/create.rs b/plugins/warp/src/plugin/create.rs
index c9bd32ce..d6839ce6 100644
--- a/plugins/warp/src/plugin/create.rs
+++ b/plugins/warp/src/plugin/create.rs
@@ -37,7 +37,6 @@ impl SaveFileField {
prompt: "File Path".to_string(),
// TODO: This is called extension but is really a filter.
extension: Some("*.warp".to_string()),
- default_name: Some(default_name),
default: Some(default_file_path.to_string_lossy().to_string()),
value: None,
}