diff options
author | Sergei Litovchuk <slitovchuk@productengine.com> | 2010-01-26 20:17:44 +0200 |
---|---|---|
committer | Sergei Litovchuk <slitovchuk@productengine.com> | 2010-01-26 20:17:44 +0200 |
commit | 5344f82e282ed4ce1c016c1e164f674f64bb78be (patch) | |
tree | f9cbffec2557707a0dd63c5ef443d014e03493b7 /indra/newview/llpanellandmarkinfo.cpp | |
parent | 43bb3d00ecba66fe3dd9fa5a2d487ffc5633ed5e (diff) |
Fixed normal bug (EXT-4720) N/A is displayed in the Create Landmark panel while data is retrieved.
--HG--
branch : product-engine
Diffstat (limited to 'indra/newview/llpanellandmarkinfo.cpp')
-rw-r--r-- | indra/newview/llpanellandmarkinfo.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/indra/newview/llpanellandmarkinfo.cpp b/indra/newview/llpanellandmarkinfo.cpp index 9654e17659..c792fd4fe3 100644 --- a/indra/newview/llpanellandmarkinfo.cpp +++ b/indra/newview/llpanellandmarkinfo.cpp @@ -98,10 +98,10 @@ void LLPanelLandmarkInfo::resetLocation() { LLPanelPlaceInfo::resetLocation(); - std::string not_available = getString("not_available"); - mCreator->setText(not_available); - mOwner->setText(not_available); - mCreated->setText(not_available); + std::string loading = LLTrans::getString("LoadingData"); + mCreator->setText(loading); + mOwner->setText(loading); + mCreated->setText(loading); mLandmarkTitle->setText(LLStringUtil::null); mLandmarkTitleEditor->setText(LLStringUtil::null); mNotesEditor->setText(LLStringUtil::null); |