mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 16:07:47 +00:00
FileManager: Remove explicit T
to Optional<T>
conversion
This commit is contained in:
parent
9323d459b4
commit
6c0b9919ce
1 changed files with 2 additions and 2 deletions
|
@ -94,7 +94,7 @@ PropertiesWindow::PropertiesWindow(const String& path, bool disable_rename, Wind
|
|||
auto properties = Vector<PropertyValuePair>();
|
||||
properties.append({ "Type:", get_description(m_mode) });
|
||||
auto parent_link = URL::create_with_file_protocol(m_parent_path, m_name);
|
||||
properties.append(PropertyValuePair { "Location:", path, Optional(parent_link) });
|
||||
properties.append(PropertyValuePair { "Location:", path, parent_link });
|
||||
|
||||
if (S_ISLNK(m_mode)) {
|
||||
auto link_destination = Core::File::read_link(path);
|
||||
|
@ -103,7 +103,7 @@ PropertiesWindow::PropertiesWindow(const String& path, bool disable_rename, Wind
|
|||
} else {
|
||||
auto link_directory = LexicalPath(link_destination);
|
||||
auto link_parent = URL::create_with_file_protocol(link_directory.dirname(), link_directory.basename());
|
||||
properties.append({ "Link target:", link_destination, Optional(link_parent) });
|
||||
properties.append({ "Link target:", link_destination, link_parent });
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue