diff options
| author | Don Kjer <don@lindenlab.com> | 2012-09-04 04:24:47 +0000 |
|---|---|---|
| committer | Don Kjer <don@lindenlab.com> | 2012-09-04 04:24:47 +0000 |
| commit | 7b4385420edf3f431ddc4a7042bbc9623ffedd34 (patch) | |
| tree | dfe4d1b483a2f5c86299f6ffb10397b2316cfa7b /indra/newview/llwearablelist.cpp | |
| parent | 403d1b6404355fa26b0bfeff206f5c56758a491c (diff) | |
More clean-up to closer match original file order. For llavatarappearance diffs
Diffstat (limited to 'indra/newview/llwearablelist.cpp')
| -rw-r--r-- | indra/newview/llwearablelist.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llwearablelist.cpp b/indra/newview/llwearablelist.cpp index 9f04fbecf0..6c4790ad77 100644 --- a/indra/newview/llwearablelist.cpp +++ b/indra/newview/llwearablelist.cpp @@ -112,8 +112,8 @@ void LLWearableList::processGetAssetReply( const char* filename, const LLAssetID else { wearable = new LLViewerWearable(uuid); - bool res = wearable->importFile( fp ); - if (!res) + LLWearable::EImportResult result = wearable->importFile( fp ); + if (LLWearable::SUCCESS != result) { if (wearable->getType() == LLWearableType::WT_COUNT) { |
