diff options
Diffstat (limited to 'src/gui/widgets/tabs/tab.cpp')
-rw-r--r-- | src/gui/widgets/tabs/tab.cpp | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/src/gui/widgets/tabs/tab.cpp b/src/gui/widgets/tabs/tab.cpp index 733d030d2..1f09f28fd 100644 --- a/src/gui/widgets/tabs/tab.cpp +++ b/src/gui/widgets/tabs/tab.cpp @@ -33,16 +33,7 @@ int Tab::mInstances = 0; float Tab::mAlpha = 1.0; -enum -{ - TAB_STANDARD = 0, // 0 - TAB_HIGHLIGHTED, // 1 - TAB_SELECTED, // 2 - TAB_UNUSED, // 3 - TAB_COUNT // 4 - Must be last. -}; - -static std::string const data[TAB_COUNT] = +static std::string const data[Tab::TAB_COUNT] = { "tab.xml", "tab_highlighted.xml", @@ -50,7 +41,7 @@ static std::string const data[TAB_COUNT] = "tab_unused.xml" }; -Skin *Tab::tabImg[TAB_COUNT]; +Skin *Tab::tabImg[Tab::TAB_COUNT]; Tab::Tab(const Widget2 *const widget) : gcn::BasicContainer(), |