summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrey Lihatskiy <alihatskiy@productengine.com>2021-11-19 06:05:45 +0200
committerAndrey Lihatskiy <alihatskiy@productengine.com>2021-11-19 06:05:45 +0200
commitc9343c400487979c206f0bc5fa3d04d70de6870a (patch)
tree96f0b0b93ec47318851c6a0e2f04112e189f0d34
parent9a1af101cd89c6b908eb2810d94de706b37bd0ea (diff)
DRTVWR-543 Post-merge build fix
-rw-r--r--indra/newview/llagentwearables.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llagentwearables.cpp b/indra/newview/llagentwearables.cpp
index 2faccde6a0..2e769dc737 100644
--- a/indra/newview/llagentwearables.cpp
+++ b/indra/newview/llagentwearables.cpp
@@ -1616,7 +1616,7 @@ void LLAgentWearables::editWearable(const LLUUID& item_id)
return;
}
- const BOOL disable_camera_switch = LLWearableType::getDisableCameraSwitch(wearable->getType());
+ const BOOL disable_camera_switch = LLWearableType::getInstance()->getDisableCameraSwitch(wearable->getType());
LLPanel* panel = LLFloaterSidePanelContainer::getPanel("appearance");
LLSidepanelAppearance::editWearable(wearable, panel, disable_camera_switch);
}