diff options
author | MaksymS ProductEngine <msavchenko@productengine.com> | 2012-08-24 00:22:40 +0300 |
---|---|---|
committer | MaksymS ProductEngine <msavchenko@productengine.com> | 2012-08-24 00:22:40 +0300 |
commit | 99300085d4d1e71035be22ab4f671624a4bd28c2 (patch) | |
tree | 990042b1635f1937552a27d4b7b7604432e3d148 /indra/llui/lltoggleablemenu.cpp | |
parent | 67750daf2318f5b91694fc8beb78f7b89880a6d1 (diff) |
MAINT-1415 FIXED Empty non-functional 'Take off' menu is presented in inspector:
- class LLToggleableMenu had been updated with two methods like: appendContextSubMenu and addChild, which based on similar in LLContextMenu
Diffstat (limited to 'indra/llui/lltoggleablemenu.cpp')
-rw-r--r-- | indra/llui/lltoggleablemenu.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/indra/llui/lltoggleablemenu.cpp b/indra/llui/lltoggleablemenu.cpp index d29260750f..b4c6c6162b 100644 --- a/indra/llui/lltoggleablemenu.cpp +++ b/indra/llui/lltoggleablemenu.cpp @@ -99,3 +99,8 @@ bool LLToggleableMenu::toggleVisibility() return true; } + +bool LLToggleableMenu::addChild(LLView* view, S32 tab_group) +{ + return addContextChild(view, tab_group); +} |