diff options
author | Jacek Antonelli | 2008-08-15 23:45:04 -0500 |
---|---|---|
committer | Jacek Antonelli | 2008-08-15 23:45:04 -0500 |
commit | 117e22047c5752352342d64e3fb7ce00a4eb8113 (patch) | |
tree | e32de2cfba0dda8705ae528fcd1fbe23ba075685 /linden/indra/newview/llfloatercustomize.cpp | |
parent | Second Life viewer sources 1.18.0.6 (diff) | |
download | meta-impy-117e22047c5752352342d64e3fb7ce00a4eb8113.zip meta-impy-117e22047c5752352342d64e3fb7ce00a4eb8113.tar.gz meta-impy-117e22047c5752352342d64e3fb7ce00a4eb8113.tar.bz2 meta-impy-117e22047c5752352342d64e3fb7ce00a4eb8113.tar.xz |
Second Life viewer sources 1.18.1.2
Diffstat (limited to '')
-rw-r--r-- | linden/indra/newview/llfloatercustomize.cpp | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/linden/indra/newview/llfloatercustomize.cpp b/linden/indra/newview/llfloatercustomize.cpp index 62ead8f..41bd8d7 100644 --- a/linden/indra/newview/llfloatercustomize.cpp +++ b/linden/indra/newview/llfloatercustomize.cpp | |||
@@ -489,7 +489,7 @@ void LLPanelEditWearable::addSubpart( const LLString& name, ESubpart id, LLSubpa | |||
489 | { | 489 | { |
490 | if (!name.empty()) | 490 | if (!name.empty()) |
491 | { | 491 | { |
492 | childSetAction(name, &LLPanelEditWearable::onBtnSubpart, (void*)(S32)id); | 492 | childSetAction(name, &LLPanelEditWearable::onBtnSubpart, (void*)id); |
493 | part->mButtonName = name; | 493 | part->mButtonName = name; |
494 | } | 494 | } |
495 | mSubpartList[id] = part; | 495 | mSubpartList[id] = part; |
@@ -1585,19 +1585,19 @@ BOOL LLFloaterCustomize::postBuild() | |||
1585 | initWearablePanels(); | 1585 | initWearablePanels(); |
1586 | 1586 | ||
1587 | // Tab container | 1587 | // Tab container |
1588 | childSetTabChangeCallback("customize tab container", "Shape", onTabChanged, (void*)(S32)WT_SHAPE ); | 1588 | childSetTabChangeCallback("customize tab container", "Shape", onTabChanged, (void*)WT_SHAPE ); |
1589 | childSetTabChangeCallback("customize tab container", "Skin", onTabChanged, (void*)(S32)WT_SKIN ); | 1589 | childSetTabChangeCallback("customize tab container", "Skin", onTabChanged, (void*)WT_SKIN ); |
1590 | childSetTabChangeCallback("customize tab container", "Hair", onTabChanged, (void*)(S32)WT_HAIR ); | 1590 | childSetTabChangeCallback("customize tab container", "Hair", onTabChanged, (void*)WT_HAIR ); |
1591 | childSetTabChangeCallback("customize tab container", "Eyes", onTabChanged, (void*)(S32)WT_EYES ); | 1591 | childSetTabChangeCallback("customize tab container", "Eyes", onTabChanged, (void*)WT_EYES ); |
1592 | childSetTabChangeCallback("customize tab container", "Shirt", onTabChanged, (void*)(S32)WT_SHIRT ); | 1592 | childSetTabChangeCallback("customize tab container", "Shirt", onTabChanged, (void*)WT_SHIRT ); |
1593 | childSetTabChangeCallback("customize tab container", "Pants", onTabChanged, (void*)(S32)WT_PANTS ); | 1593 | childSetTabChangeCallback("customize tab container", "Pants", onTabChanged, (void*)WT_PANTS ); |
1594 | childSetTabChangeCallback("customize tab container", "Shoes", onTabChanged, (void*)(S32)WT_SHOES ); | 1594 | childSetTabChangeCallback("customize tab container", "Shoes", onTabChanged, (void*)WT_SHOES ); |
1595 | childSetTabChangeCallback("customize tab container", "Socks", onTabChanged, (void*)(S32)WT_SOCKS ); | 1595 | childSetTabChangeCallback("customize tab container", "Socks", onTabChanged, (void*)WT_SOCKS ); |
1596 | childSetTabChangeCallback("customize tab container", "Jacket", onTabChanged, (void*)(S32)WT_JACKET ); | 1596 | childSetTabChangeCallback("customize tab container", "Jacket", onTabChanged, (void*)WT_JACKET ); |
1597 | childSetTabChangeCallback("customize tab container", "Gloves", onTabChanged, (void*)(S32)WT_GLOVES ); | 1597 | childSetTabChangeCallback("customize tab container", "Gloves", onTabChanged, (void*)WT_GLOVES ); |
1598 | childSetTabChangeCallback("customize tab container", "Undershirt", onTabChanged, (void*)(S32)WT_UNDERSHIRT ); | 1598 | childSetTabChangeCallback("customize tab container", "Undershirt", onTabChanged, (void*)WT_UNDERSHIRT ); |
1599 | childSetTabChangeCallback("customize tab container", "Underpants", onTabChanged, (void*)(S32)WT_UNDERPANTS ); | 1599 | childSetTabChangeCallback("customize tab container", "Underpants", onTabChanged, (void*)WT_UNDERPANTS ); |
1600 | childSetTabChangeCallback("customize tab container", "Skirt", onTabChanged, (void*)(S32)WT_SKIRT ); | 1600 | childSetTabChangeCallback("customize tab container", "Skirt", onTabChanged, (void*)WT_SKIRT ); |
1601 | 1601 | ||
1602 | // Remove underware panels for teens | 1602 | // Remove underware panels for teens |
1603 | if (gAgent.mAccess < SIM_ACCESS_MATURE) | 1603 | if (gAgent.mAccess < SIM_ACCESS_MATURE) |