X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Ftrans_mgr.C;h=c6f5bd7ab6158f531710ab96d043d447f50736a4;hb=33a28bdc9cdf978601d5d40b693f13924801ad9e;hp=547452a0780a8afbbc2fd7ee971754cd5e275b45;hpb=55bf6460f304a4632af2136a62c8a82fb86053f3;p=lyx.git diff --git a/src/trans_mgr.C b/src/trans_mgr.C index 547452a078..c6f5bd7ab6 100644 --- a/src/trans_mgr.C +++ b/src/trans_mgr.C @@ -88,7 +88,7 @@ string const TransDeadkeyState::normalkey(char c, string const & trans) // Check if it is an exception KmodException l = deadkey_info_.exception_list; - while(l != 0) { + while (l != 0) { if (l->c == c) { res = l->data; break; @@ -118,7 +118,7 @@ string const TransDeadkeyState::normalkey(char c) // Check if it is an exception KmodException l = deadkey_info_.exception_list; - while(l != 0) { + while (l != 0) { if (l->c == c) { res = l->data; break; @@ -359,7 +359,7 @@ void TransManager::TranslateAndInsert(char c, LyXText * text) // Process with tokens string temp; - while(res.length() > 0) { + while (res.length() > 0) { res = split(res, temp, TransState::TOKEN_SEP); insert(temp, text); }