diff options
author | McCabe Maxsted | 2010-09-15 11:20:50 -0700 |
---|---|---|
committer | McCabe Maxsted | 2010-09-15 11:20:50 -0700 |
commit | 465e1f011fa5b44b2873030e09fbf1631b069046 (patch) | |
tree | db150b49510beba7b78b1db279473c58c18aa4ab /linden/indra/llui | |
parent | Fixed up the spellcheck preferences labels to something more easily understan... (diff) | |
download | meta-impy-465e1f011fa5b44b2873030e09fbf1631b069046.zip meta-impy-465e1f011fa5b44b2873030e09fbf1631b069046.tar.gz meta-impy-465e1f011fa5b44b2873030e09fbf1631b069046.tar.bz2 meta-impy-465e1f011fa5b44b2873030e09fbf1631b069046.tar.xz |
More spell checking cleanup
Diffstat (limited to 'linden/indra/llui')
-rw-r--r-- | linden/indra/llui/lllineeditor.cpp | 6 | ||||
-rw-r--r-- | linden/indra/llui/lltexteditor.cpp | 11 |
2 files changed, 9 insertions, 8 deletions
diff --git a/linden/indra/llui/lllineeditor.cpp b/linden/indra/llui/lllineeditor.cpp index e95af79..9c68fec 100644 --- a/linden/indra/llui/lllineeditor.cpp +++ b/linden/indra/llui/lllineeditor.cpp | |||
@@ -548,7 +548,7 @@ void LLLineEditor::spell_show(void * data) | |||
548 | 548 | ||
549 | if( tempBind && line) | 549 | if( tempBind && line) |
550 | { | 550 | { |
551 | if (tempBind->word=="Show Misspellings") | 551 | if (tempBind->word == "Show Misspellings") |
552 | { | 552 | { |
553 | line->setShowMisspellings(TRUE); | 553 | line->setShowMisspellings(TRUE); |
554 | } | 554 | } |
@@ -813,7 +813,7 @@ BOOL LLLineEditor::handleRightMouseDown( S32 x, S32 y, MASK mask ) | |||
813 | 813 | ||
814 | SpellMenuBind * tempStruct = new SpellMenuBind; | 814 | SpellMenuBind * tempStruct = new SpellMenuBind; |
815 | tempStruct->origin = this; | 815 | tempStruct->origin = this; |
816 | if (glggHunSpell->mSpellCheckHighlight) | 816 | if (glggHunSpell->getSpellCheckHighlight()) |
817 | { | 817 | { |
818 | tempStruct->word = "Hide Misspellings"; | 818 | tempStruct->word = "Hide Misspellings"; |
819 | } | 819 | } |
@@ -1917,7 +1917,7 @@ void LLLineEditor::drawMisspelled(LLRect background) | |||
1917 | } | 1917 | } |
1918 | } | 1918 | } |
1919 | 1919 | ||
1920 | if (glggHunSpell->mSpellCheckHighlight) | 1920 | if (glggHunSpell->getSpellCheckHighlight()) |
1921 | { | 1921 | { |
1922 | for (int i =0; i<(int)misspellLocations.size(); i++) | 1922 | for (int i =0; i<(int)misspellLocations.size(); i++) |
1923 | { | 1923 | { |
diff --git a/linden/indra/llui/lltexteditor.cpp b/linden/indra/llui/lltexteditor.cpp index d2469c3..cf35ee7 100644 --- a/linden/indra/llui/lltexteditor.cpp +++ b/linden/indra/llui/lltexteditor.cpp | |||
@@ -486,12 +486,13 @@ void LLTextEditor::spell_show(void * data) | |||
486 | SpellMenuBind* tempBind = (SpellMenuBind*)data; | 486 | SpellMenuBind* tempBind = (SpellMenuBind*)data; |
487 | LLTextEditor* line = tempBind->origin; | 487 | LLTextEditor* line = tempBind->origin; |
488 | 488 | ||
489 | if(tempBind && line) | 489 | if (tempBind && line) |
490 | { | 490 | { |
491 | if(tempBind->word=="Show Misspellings") | 491 | if (tempBind->word == "Show Misspellings") |
492 | { | 492 | { |
493 | line->setShowMisspellings(TRUE); | 493 | line->setShowMisspellings(TRUE); |
494 | }else | 494 | } |
495 | else | ||
495 | { | 496 | { |
496 | line->setShowMisspellings(FALSE); | 497 | line->setShowMisspellings(FALSE); |
497 | } | 498 | } |
@@ -1508,7 +1509,7 @@ BOOL LLTextEditor::handleRightMouseDown( S32 x, S32 y, MASK mask ) | |||
1508 | 1509 | ||
1509 | SpellMenuBind * tempStruct = new SpellMenuBind; | 1510 | SpellMenuBind * tempStruct = new SpellMenuBind; |
1510 | tempStruct->origin = this; | 1511 | tempStruct->origin = this; |
1511 | if (glggHunSpell->mSpellCheckHighlight) | 1512 | if (glggHunSpell->getSpellCheckHighlight()) |
1512 | { | 1513 | { |
1513 | tempStruct->word = "Hide Misspellings"; | 1514 | tempStruct->word = "Hide Misspellings"; |
1514 | } | 1515 | } |
@@ -3153,7 +3154,7 @@ void LLTextEditor::drawMisspelled() | |||
3153 | } | 3154 | } |
3154 | } | 3155 | } |
3155 | //draw | 3156 | //draw |
3156 | if (glggHunSpell->mSpellCheckHighlight) | 3157 | if (glggHunSpell->getSpellCheckHighlight()) |
3157 | { | 3158 | { |
3158 | for (int i = 0; i<(int)misspellLocations.size() ;i++) | 3159 | for (int i = 0; i<(int)misspellLocations.size() ;i++) |
3159 | { | 3160 | { |