1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 03:17:35 +00:00

TextEditor: Rename open_sesame() => open_file()

This commit is contained in:
Andreas Kling 2021-02-27 11:05:39 +01:00
parent 69d8ad52c4
commit 28720e9035
3 changed files with 5 additions and 5 deletions

View file

@ -40,7 +40,7 @@ class TextEditorWidget final : public GUI::Widget {
C_OBJECT(TextEditorWidget)
public:
virtual ~TextEditorWidget() override;
void open_sesame(const String& path);
void open_file(const String& path);
bool request_close();
GUI::TextEditor& editor() { return *m_editor; }