mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 14:57:35 +00:00
Everywhere: "file name" => "filename"
This commit is contained in:
parent
def1f1444a
commit
7ae7170d61
59 changed files with 181 additions and 181 deletions
|
@ -132,14 +132,14 @@ GUI::TextEditor& current_editor()
|
|||
return s_hack_studio_widget->current_editor();
|
||||
}
|
||||
|
||||
void open_file(const String& file_name)
|
||||
void open_file(const String& filename)
|
||||
{
|
||||
s_hack_studio_widget->open_file(file_name);
|
||||
s_hack_studio_widget->open_file(filename);
|
||||
}
|
||||
|
||||
void open_file(const String& file_name, size_t line, size_t column)
|
||||
void open_file(const String& filename, size_t line, size_t column)
|
||||
{
|
||||
s_hack_studio_widget->open_file(file_name);
|
||||
s_hack_studio_widget->open_file(filename);
|
||||
s_hack_studio_widget->current_editor_wrapper().editor().set_cursor({ line, column });
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue