summaryrefslogtreecommitdiff
path: root/indra/newview/lllocationinputctrl.h
diff options
context:
space:
mode:
authorRye Cogtail <rye@lindenlab.com>2024-10-30 16:03:53 -0400
committerRye <rye@lindenlab.com>2024-10-30 22:08:06 -0700
commitae5e4c30468f0712c0f8b28b7b36ada41c198c14 (patch)
treec777ad25a13b19cf403f507d7d6970a719e8ceb3 /indra/newview/lllocationinputctrl.h
parentb44158591b06704de6506d4ec03314e93c800adb (diff)
Fix various member variables being access before initialization
Diffstat (limited to 'indra/newview/lllocationinputctrl.h')
-rw-r--r--indra/newview/lllocationinputctrl.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/lllocationinputctrl.h b/indra/newview/lllocationinputctrl.h
index 56e5555ba5..c048b028f5 100644
--- a/indra/newview/lllocationinputctrl.h
+++ b/indra/newview/lllocationinputctrl.h
@@ -206,7 +206,7 @@ private:
std::string mEditLandmarkTooltip;
// this field holds a human-readable form of the location string, it is needed to be able to compare copy-pated value and real location
std::string mHumanReadableLocation;
- bool isHumanReadableLocationVisible;
+ bool isHumanReadableLocationVisible = true;
std::string mMaturityHelpTopic;
};