diff options
author | McCabe Maxsted | 2010-05-28 23:26:31 -0700 |
---|---|---|
committer | Jacek Antonelli | 2010-06-19 02:43:26 -0500 |
commit | 73042f8cfcc80df50ff75a84d888c8c33dbaad41 (patch) | |
tree | 10e7278f82814105429b74dca5e1dda433a11e86 /linden/indra/llprimitive/llprimitive.cpp | |
parent | Fixed issue with certain sit animations not loading (diff) | |
download | meta-impy-73042f8cfcc80df50ff75a84d888c8c33dbaad41.zip meta-impy-73042f8cfcc80df50ff75a84d888c8c33dbaad41.tar.gz meta-impy-73042f8cfcc80df50ff75a84d888c8c33dbaad41.tar.bz2 meta-impy-73042f8cfcc80df50ff75a84d888c8c33dbaad41.tar.xz |
Fixed llendl to llendl; in llprimitive.cpp
Diffstat (limited to 'linden/indra/llprimitive/llprimitive.cpp')
-rw-r--r-- | linden/indra/llprimitive/llprimitive.cpp | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/linden/indra/llprimitive/llprimitive.cpp b/linden/indra/llprimitive/llprimitive.cpp index 3ad4ad8..009e6b2 100644 --- a/linden/indra/llprimitive/llprimitive.cpp +++ b/linden/indra/llprimitive/llprimitive.cpp | |||
@@ -310,7 +310,7 @@ S32 LLPrimitive::setTETexture(const U8 te, const LLUUID &tex_id) | |||
310 | // if we're asking for a non-existent face, return null | 310 | // if we're asking for a non-existent face, return null |
311 | if (te >= mNumTEs) | 311 | if (te >= mNumTEs) |
312 | { | 312 | { |
313 | llwarns << "setting non-existent te " << te << llendl | 313 | llwarns << "setting non-existent te " << te << llendl; |
314 | return 0; | 314 | return 0; |
315 | } | 315 | } |
316 | 316 | ||
@@ -322,7 +322,7 @@ S32 LLPrimitive::setTEColor(const U8 te, const LLColor4 &color) | |||
322 | // if we're asking for a non-existent face, return null | 322 | // if we're asking for a non-existent face, return null |
323 | if (te >= mNumTEs) | 323 | if (te >= mNumTEs) |
324 | { | 324 | { |
325 | llwarns << "setting non-existent te " << te << llendl | 325 | llwarns << "setting non-existent te " << te << llendl; |
326 | return 0; | 326 | return 0; |
327 | } | 327 | } |
328 | 328 | ||
@@ -334,7 +334,7 @@ S32 LLPrimitive::setTEColor(const U8 te, const LLColor3 &color) | |||
334 | // if we're asking for a non-existent face, return null | 334 | // if we're asking for a non-existent face, return null |
335 | if (te >= mNumTEs) | 335 | if (te >= mNumTEs) |
336 | { | 336 | { |
337 | llwarns << "setting non-existent te " << te << llendl | 337 | llwarns << "setting non-existent te " << te << llendl; |
338 | return 0; | 338 | return 0; |
339 | } | 339 | } |
340 | 340 | ||
@@ -346,7 +346,7 @@ S32 LLPrimitive::setTEAlpha(const U8 te, const F32 alpha) | |||
346 | // if we're asking for a non-existent face, return null | 346 | // if we're asking for a non-existent face, return null |
347 | if (te >= mNumTEs) | 347 | if (te >= mNumTEs) |
348 | { | 348 | { |
349 | llwarns << "setting non-existent te " << te << llendl | 349 | llwarns << "setting non-existent te " << te << llendl; |
350 | return 0; | 350 | return 0; |
351 | } | 351 | } |
352 | 352 | ||
@@ -465,7 +465,7 @@ S32 LLPrimitive::setTEBumpShinyFullbright(const U8 te, const U8 bump) | |||
465 | // if we're asking for a non-existent face, return null | 465 | // if we're asking for a non-existent face, return null |
466 | if (te >= mNumTEs) | 466 | if (te >= mNumTEs) |
467 | { | 467 | { |
468 | llwarns << "setting non-existent te " << te << llendl | 468 | llwarns << "setting non-existent te " << te << llendl; |
469 | return 0; | 469 | return 0; |
470 | } | 470 | } |
471 | 471 | ||
@@ -477,7 +477,7 @@ S32 LLPrimitive::setTEMediaTexGen(const U8 te, const U8 media) | |||
477 | // if we're asking for a non-existent face, return null | 477 | // if we're asking for a non-existent face, return null |
478 | if (te >= mNumTEs) | 478 | if (te >= mNumTEs) |
479 | { | 479 | { |
480 | llwarns << "setting non-existent te " << te << llendl | 480 | llwarns << "setting non-existent te " << te << llendl; |
481 | return 0; | 481 | return 0; |
482 | } | 482 | } |
483 | 483 | ||
@@ -489,7 +489,7 @@ S32 LLPrimitive::setTEBumpmap(const U8 te, const U8 bump) | |||
489 | // if we're asking for a non-existent face, return null | 489 | // if we're asking for a non-existent face, return null |
490 | if (te >= mNumTEs) | 490 | if (te >= mNumTEs) |
491 | { | 491 | { |
492 | llwarns << "setting non-existent te " << te << llendl | 492 | llwarns << "setting non-existent te " << te << llendl; |
493 | return 0; | 493 | return 0; |
494 | } | 494 | } |
495 | 495 | ||
@@ -501,7 +501,7 @@ S32 LLPrimitive::setTEBumpShiny(const U8 te, const U8 bump_shiny) | |||
501 | // if we're asking for a non-existent face, return null | 501 | // if we're asking for a non-existent face, return null |
502 | if (te >= mNumTEs) | 502 | if (te >= mNumTEs) |
503 | { | 503 | { |
504 | llwarns << "setting non-existent te " << te << llendl | 504 | llwarns << "setting non-existent te " << te << llendl; |
505 | return 0; | 505 | return 0; |
506 | } | 506 | } |
507 | 507 | ||
@@ -513,7 +513,7 @@ S32 LLPrimitive::setTETexGen(const U8 te, const U8 texgen) | |||
513 | // if we're asking for a non-existent face, return null | 513 | // if we're asking for a non-existent face, return null |
514 | if (te >= mNumTEs) | 514 | if (te >= mNumTEs) |
515 | { | 515 | { |
516 | llwarns << "setting non-existent te " << te << llendl | 516 | llwarns << "setting non-existent te " << te << llendl; |
517 | return 0; | 517 | return 0; |
518 | } | 518 | } |
519 | 519 | ||
@@ -525,7 +525,7 @@ S32 LLPrimitive::setTEShiny(const U8 te, const U8 shiny) | |||
525 | // if we're asking for a non-existent face, return null | 525 | // if we're asking for a non-existent face, return null |
526 | if (te >= mNumTEs) | 526 | if (te >= mNumTEs) |
527 | { | 527 | { |
528 | llwarns << "setting non-existent te " << te << llendl | 528 | llwarns << "setting non-existent te " << te << llendl; |
529 | return 0; | 529 | return 0; |
530 | } | 530 | } |
531 | 531 | ||
@@ -537,7 +537,7 @@ S32 LLPrimitive::setTEFullbright(const U8 te, const U8 fullbright) | |||
537 | // if we're asking for a non-existent face, return null | 537 | // if we're asking for a non-existent face, return null |
538 | if (te >= mNumTEs) | 538 | if (te >= mNumTEs) |
539 | { | 539 | { |
540 | llwarns << "setting non-existent te " << te << llendl | 540 | llwarns << "setting non-existent te " << te << llendl; |
541 | return 0; | 541 | return 0; |
542 | } | 542 | } |
543 | 543 | ||
@@ -549,7 +549,7 @@ S32 LLPrimitive::setTEMediaFlags(const U8 te, const U8 media_flags) | |||
549 | // if we're asking for a non-existent face, return null | 549 | // if we're asking for a non-existent face, return null |
550 | if (te >= mNumTEs) | 550 | if (te >= mNumTEs) |
551 | { | 551 | { |
552 | llwarns << "setting non-existent te " << te << llendl | 552 | llwarns << "setting non-existent te " << te << llendl; |
553 | return 0; | 553 | return 0; |
554 | } | 554 | } |
555 | 555 | ||
@@ -561,7 +561,7 @@ S32 LLPrimitive::setTEGlow(const U8 te, const F32 glow) | |||
561 | // if we're asking for a non-existent face, return null | 561 | // if we're asking for a non-existent face, return null |
562 | if (te >= mNumTEs) | 562 | if (te >= mNumTEs) |
563 | { | 563 | { |
564 | llwarns << "setting non-existent te " << te << llendl | 564 | llwarns << "setting non-existent te " << te << llendl; |
565 | return 0; | 565 | return 0; |
566 | } | 566 | } |
567 | 567 | ||