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
Notes: sideshowbarker 2024-07-19 12:34:20 +09:00

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