I forgot to commit this in 21167.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@21170 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Abdelrazak Younes 2007-10-24 08:40:38 +00:00
parent 604bf56374
commit 92908b6ecf

View File

@ -732,15 +732,15 @@ void Text::dispatch(Cursor & cur, FuncRequest & cmd)
break;
case LFUN_WORD_UPCASE:
changeCase(cur, Text::text_uppercase);
changeCase(cur, text_uppercase);
break;
case LFUN_WORD_LOWCASE:
changeCase(cur, Text::text_lowercase);
changeCase(cur, text_lowercase);
break;
case LFUN_WORD_CAPITALIZE:
changeCase(cur, Text::text_capitalization);
changeCase(cur, text_capitalization);
break;
case LFUN_CHARS_TRANSPOSE: