]> git.lyx.org Git - lyx.git/blobdiff - src/Text.cpp
Update it.po
[lyx.git] / src / Text.cpp
index f6b676b57deb7b6d29fb3edd95776c6a41251552..47f272fef66d3c33c6e326f9e43beec44064eefc 100644 (file)
@@ -1540,11 +1540,11 @@ void Text::charsTranspose(Cursor & cur)
                return;
 
        // Store the characters to be transposed (including font information).
-       char_type char1 = par.getChar(pos1);
+       char_type const char1 = par.getChar(pos1);
        Font const font1 =
                par.getFontSettings(cur.buffer().params(), pos1);
 
-       char_type char2 = par.getChar(pos2);
+       char_type const char2 = par.getChar(pos2);
        Font const font2 =
                par.getFontSettings(cur.buffer().params(), pos2);