diff options
author | Steve Bennetts <steve@lindenlab.com> | 2009-11-13 10:17:56 -0800 |
---|---|---|
committer | Steve Bennetts <steve@lindenlab.com> | 2009-11-13 10:17:56 -0800 |
commit | b3b608b2a8e0678a86c86f3506d6424d4834be20 (patch) | |
tree | f6c09386bd404e432f703d3f2c5d93727251a324 /indra/newview/llstartup.cpp | |
parent | 230f28080cfcb6785c248340aaa42cfb29703b23 (diff) | |
parent | 8a0341f42e2ba3a91a3ad5bc355966b07ac6801f (diff) |
Merge from product-engine
Diffstat (limited to 'indra/newview/llstartup.cpp')
-rw-r--r-- | indra/newview/llstartup.cpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/indra/newview/llstartup.cpp b/indra/newview/llstartup.cpp index 2c59d62b4b..696b0d9af1 100644 --- a/indra/newview/llstartup.cpp +++ b/indra/newview/llstartup.cpp @@ -1691,8 +1691,11 @@ bool idle_startup() //all categories loaded. lets create "My Favorites" category gInventory.findCategoryUUIDForType(LLFolderType::FT_FAVORITE,true); - // lets create "Friends" and "Friends/All" in the Inventory "Calling Cards" and fill it with buddies - LLFriendCardsManager::instance().syncFriendsFolder(); + // Checks whether "Friends" and "Friends/All" folders exist in "Calling Cards" folder, + // fetches their contents if needed and synchronizes it with buddies list. + // If the folders are not found they are created. + LLFriendCardsManager::instance().syncFriendCardsFolders(); + // set up callbacks llinfos << "Registering Callbacks" << llendl; |