1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 10:18:11 +00:00

GTabWidget: Rename get_active_tab() => active_tab_index()

This commit is contained in:
Andreas Kling 2019-09-07 16:57:26 +02:00
parent 568936775f
commit a635619cc0
3 changed files with 7 additions and 8 deletions

View file

@ -15,7 +15,8 @@ public:
TabPosition tab_position() const { return m_tab_position; }
void set_tab_position(TabPosition);
int get_active_tab() const;
int active_tab_index() const;
GWidget* active_widget() const { return m_active_widget; }
void set_active_widget(GWidget*);