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

GTextEditor: Rename is_automatic_indentation_enabled() API

The previous name was is_automatic_indentation() which sounds weird.
This commit is contained in:
Andreas Kling 2019-08-21 19:33:54 +02:00
parent 9e5c5627d5
commit d5431a6df8

View file

@ -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; }