diff options
author | andreykproductengine <andreykproductengine@lindenlab.com> | 2019-11-18 20:12:50 +0200 |
---|---|---|
committer | andreykproductengine <andreykproductengine@lindenlab.com> | 2019-11-18 20:12:50 +0200 |
commit | 9c1e84908383a188f69346a24aea1c25da1a1be0 (patch) | |
tree | 3fce2c74d662351ef933bdc9281b4778925ae60c /indra/llui | |
parent | 3675c90b2e93be3cf3b8e39f6e32cd39ff30997c (diff) |
SL-12305 More missing-file handling
instance().getCurFileName() was returning empty value despite supposedly non-empty filename
Diffstat (limited to 'indra/llui')
-rw-r--r-- | indra/llui/lluictrlfactory.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/llui/lluictrlfactory.h b/indra/llui/lluictrlfactory.h index 03d946f1b7..f740f14e4d 100644 --- a/indra/llui/lluictrlfactory.h +++ b/indra/llui/lluictrlfactory.h @@ -160,8 +160,8 @@ public: LLXMLNodePtr root_node; if (!LLUICtrlFactory::getLayeredXMLNode(filename, root_node)) - { - LL_WARNS() << "Couldn't parse XUI file: " << instance().getCurFileName() << LL_ENDL; + { + LL_WARNS() << "Couldn't parse XUI from path: " << instance().getCurFileName() << ", from filename: " << filename << LL_ENDL; goto fail; } |