diff options
Diffstat (limited to 'Userland/Libraries/LibGUI/AbstractButton.h')
-rw-r--r-- | Userland/Libraries/LibGUI/AbstractButton.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Userland/Libraries/LibGUI/AbstractButton.h b/Userland/Libraries/LibGUI/AbstractButton.h index 890d5f7c62..c24ab8a83b 100644 --- a/Userland/Libraries/LibGUI/AbstractButton.h +++ b/Userland/Libraries/LibGUI/AbstractButton.h @@ -20,8 +20,8 @@ public: Function<void(bool)> on_checked; - virtual void set_text(DeprecatedString); - DeprecatedString const& text() const { return m_text; } + virtual void set_text_deprecated(DeprecatedString); + DeprecatedString const& text_deprecated() const { return m_text; } bool is_exclusive() const { return m_exclusive; } void set_exclusive(bool b) { m_exclusive = b; } |