diff options
| author | Todd Stinson <stinson@lindenlab.com> | 2012-04-18 18:34:54 -0700 |
|---|---|---|
| committer | Todd Stinson <stinson@lindenlab.com> | 2012-04-18 18:34:54 -0700 |
| commit | 12207b5f2ce14503064ea0af273303eec0cb2ce7 (patch) | |
| tree | b984cc1701a1f7114b989bcd5ef13254a0b2428f /indra/newview/llfloaterpathfindingconsole.cpp | |
| parent | d2850572a452d74625a9b736563c479bc5f1e4cc (diff) | |
Ensuring that the pathfinding console member variables are private with accessor functions where need be.
Diffstat (limited to 'indra/newview/llfloaterpathfindingconsole.cpp')
| -rw-r--r-- | indra/newview/llfloaterpathfindingconsole.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/indra/newview/llfloaterpathfindingconsole.cpp b/indra/newview/llfloaterpathfindingconsole.cpp index 92011a9524..9c2725e7e8 100644 --- a/indra/newview/llfloaterpathfindingconsole.cpp +++ b/indra/newview/llfloaterpathfindingconsole.cpp @@ -390,7 +390,12 @@ void LLFloaterPathfindingConsole::setRenderHeatmapType(LLPathingLib::LLPLCharact break;
}
- return mShowNavMeshWalkabilityComboBox->setValue(comboBoxValue);
+ mShowNavMeshWalkabilityComboBox->setValue(comboBoxValue);
+}
+
+const LLColor4 &LLFloaterPathfindingConsole::getNavMeshBackgroundColor() const
+{
+ return mNavMeshColors.mNavMeshClear;
}
LLFloaterPathfindingConsole::LLFloaterPathfindingConsole(const LLSD& pSeed)
|
