mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-31 05:09:12 +00:00
FileManager+FileOperation: Switch to east const
(And some adjustments based on MaxWipfli's feedback)
This commit is contained in:
parent
5217875f6a
commit
ca039e6ba1
Notes:
sideshowbarker
2024-07-18 08:34:56 +09:00
Author: https://github.com/AtkinsSJ
Commit: ca039e6ba1
Pull-request: https://github.com/SerenityOS/serenity/pull/8117
Reviewed-by: https://github.com/MaxWipfli ✅
10 changed files with 93 additions and 93 deletions
|
@ -26,7 +26,7 @@
|
|||
#include <string.h>
|
||||
#include <unistd.h>
|
||||
|
||||
PropertiesWindow::PropertiesWindow(const String& path, bool disable_rename, Window* parent_window)
|
||||
PropertiesWindow::PropertiesWindow(String const& path, bool disable_rename, Window* parent_window)
|
||||
: Window(parent_window)
|
||||
{
|
||||
auto lexical_path = LexicalPath(path);
|
||||
|
@ -184,7 +184,7 @@ void PropertiesWindow::permission_changed(mode_t mask, bool set)
|
|||
m_apply_button->set_enabled(m_name_dirty || m_permissions_dirty);
|
||||
}
|
||||
|
||||
String PropertiesWindow::make_full_path(const String& name)
|
||||
String PropertiesWindow::make_full_path(String const& name)
|
||||
{
|
||||
return String::formatted("{}/{}", m_parent_path, name);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue