diff options
Diffstat (limited to 'src/gui/widgets/tab.h')
-rw-r--r-- | src/gui/widgets/tab.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/widgets/tab.h b/src/gui/widgets/tab.h index 7b372e04..433084f9 100644 --- a/src/gui/widgets/tab.h +++ b/src/gui/widgets/tab.h @@ -53,9 +53,9 @@ class Tab : public gcn::Tab void setTabColor(const gcn::Color *color); /** - * Set tab highlighted + * Set tab flashing state */ - void setHighlighted(bool high); + void setFlash(bool flash); protected: friend class TabbedArea; @@ -70,7 +70,7 @@ class Tab : public gcn::Tab static float mAlpha; const gcn::Color *mTabColor; - bool mHighlighted; + bool mFlash; }; #endif |