mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-24 10:22:05 -05:00
GTextEditor: Rename is_automatic_indentation_enabled() API
The previous name was is_automatic_indentation() which sounds weird.
This commit is contained in:
parent
9e5c5627d5
commit
d5431a6df8
1 changed files with 1 additions and 1 deletions
|
@ -90,7 +90,7 @@ public:
|
|||
bool is_readonly() const { return m_readonly; }
|
||||
void set_readonly(bool);
|
||||
|
||||
bool is_automatic_indentation() const { return m_automatic_indentation_enabled; }
|
||||
bool is_automatic_indentation_enabled() const { return m_automatic_indentation_enabled; }
|
||||
void set_automatic_indentation_enabled(bool enabled) { m_automatic_indentation_enabled = enabled; }
|
||||
|
||||
TextAlignment text_alignment() const { return m_text_alignment; }
|
||||
|
|
Loading…
Add table
Reference in a new issue