aboutsummaryrefslogtreecommitdiff
path: root/src/FbMenu.cc
diff options
context:
space:
mode:
authormathias <mathias>2004-12-13 14:03:17 (GMT)
committermathias <mathias>2004-12-13 14:03:17 (GMT)
commiteb42a7806d0af854cc4bdfa8f194a0bb67446153 (patch)
tree5a8a22b0705ee927a16265f1a754159835fb22d9 /src/FbMenu.cc
parent7c7dfbfbddc635faaabb87fa755925fbb66d89dd (diff)
downloadfluxbox-eb42a7806d0af854cc4bdfa8f194a0bb67446153.zip
fluxbox-eb42a7806d0af854cc4bdfa8f194a0bb67446153.tar.bz2
icc complaint about a "possible" conflict between the
FbTk::Menu::update(Subject*) and FbTk::Menu::update(int index) to avoid this, we rename FbTk::Menu::update(int index) -> FbTk::Menu::updateMenu(int index) this is mostly cosmetic, but if it makes the life of a compiler happy, well .. be happy icc :)
Diffstat (limited to 'src/FbMenu.cc')
-rw-r--r--src/FbMenu.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/FbMenu.cc b/src/FbMenu.cc
index e1e3c7b..5105bc9 100644
--- a/src/FbMenu.cc
+++ b/src/FbMenu.cc
@@ -39,8 +39,8 @@ FbMenu::~FbMenu() {
39 39
40} 40}
41 41
42void FbMenu::update(int index) { 42void FbMenu::updateMenu(int index) {
43 FbTk::Menu::update(index); 43 FbTk::Menu::updateMenu(index);
44 m_shape->update(); 44 m_shape->update();
45} 45}
46 46