diff options
Diffstat (limited to 'src/gui')
-rw-r--r-- | src/gui/widgets/emotepage.cpp | 4 | ||||
-rw-r--r-- | src/gui/widgets/tabs/tab.cpp | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/widgets/emotepage.cpp b/src/gui/widgets/emotepage.cpp index 459e386a4..88f4addd4 100644 --- a/src/gui/widgets/emotepage.cpp +++ b/src/gui/widgets/emotepage.cpp @@ -34,8 +34,8 @@ namespace { - static const unsigned int emoteWidth = 17; - static const unsigned int emoteHeight = 18; + const unsigned int emoteWidth = 17; + const unsigned int emoteHeight = 18; } // namespace EmotePage::EmotePage(const Widget2 *const widget) : diff --git a/src/gui/widgets/tabs/tab.cpp b/src/gui/widgets/tabs/tab.cpp index a4a2f583b..36c2a3f40 100644 --- a/src/gui/widgets/tabs/tab.cpp +++ b/src/gui/widgets/tabs/tab.cpp @@ -88,7 +88,7 @@ float Tab::mAlpha = 1.0; namespace { - static std::string const data[Tab::TAB_COUNT] = + std::string const data[Tab::TAB_COUNT] = { "tab.xml", "tab_highlighted.xml", |