diff options
author | Denis Serdjuk <dserduk@productengine.com> | 2009-10-28 20:58:07 +0200 |
---|---|---|
committer | Denis Serdjuk <dserduk@productengine.com> | 2009-10-28 20:58:07 +0200 |
commit | fabebd8c0c2050c623e0085c5b761145a3295349 (patch) | |
tree | 370e732273ad0ea9e6b02760cfa92727cce6b913 | |
parent | e9c83f234306e070aa1f31eff68719589265f916 (diff) |
minor change to landmarksactions to meet the code style.
--HG--
branch : product-engine
-rw-r--r-- | indra/newview/lllandmarkactions.cpp | 2 | ||||
-rw-r--r-- | indra/newview/lllandmarkactions.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/lllandmarkactions.cpp b/indra/newview/lllandmarkactions.cpp index b36b7cf50e..091346d3b4 100644 --- a/indra/newview/lllandmarkactions.cpp +++ b/indra/newview/lllandmarkactions.cpp @@ -348,7 +348,7 @@ LLLandmark* LLLandmarkActions::getLandmark(const LLUUID& landmarkInventoryItemID { LLViewerInventoryItem* item = gInventory.getItem(landmarkInventoryItemID); if (NULL == item) - return false; + return NULL; const LLUUID& asset_id = item->getAssetUUID(); return gLandmarkList.getAsset(asset_id, NULL); diff --git a/indra/newview/lllandmarkactions.h b/indra/newview/lllandmarkactions.h index d651259790..32f05e702b 100644 --- a/indra/newview/lllandmarkactions.h +++ b/indra/newview/lllandmarkactions.h @@ -108,7 +108,7 @@ public: /** * @brief Retrieve a landmark from gLandmarkList by inventory item's id * - * @return pointer to loaded landmark from gLandmarkList or NULL if landmark does not exist. + * @return pointer to loaded landmark from gLandmarkList or NULL if landmark does not exist or wasn't loaded. */ static LLLandmark* getLandmark(const LLUUID& landmarkInventoryItemID); |